clipped from: www.vaannila.com   
Struts Login Application Using Action Form Tutorial

In this tutorial you will learn how to create a Login Page using Action Form in Struts. You will also learn how to perform validation using the validate() method in the Action Form.

clipped from: www.vaannila.com   

web.xml


The first page that will be called in the login application is the login.jsp page. This configuration should be done in web.xml as shown below.


<welcome-file-list>

<welcome-file>login.jsp</welcome-file>

</welcome-file-list>