Introduction to the Struts Web Framework
Note: This tutorial has been revised. Please see the revised version of
Introduction to the Struts Web Framework.
This document takes you through the basics of using NetBeans IDE to develop web applications
that make use of the Struts framework. The Struts framework enables you to create maintainable,
extensible, and flexible web applications based on standard technologies, such as JSP pages,
resource bundles, and XML.
Struts employs a Model,
View, Controller (MVC) architecture. When you use Struts, the framework provides you
with a controller - a servlet, which is defined in the Struts libraries that are included
in the IDE, and which is automatically registered in the web.xml deployment descriptor
when you indicate that you want to use Struts. The Struts servlet uses the struts-config.xml
file to map incoming requests to a Struts "action" class. An action class receives
a Struts actionform bean as input, which serves as a transfer object between the
action class and the view, which is typically a JavaServer Pages (JSP) page. Because many
web applications use JSP pages for the view, Struts provides custom tag libraries which
facilitate interaction with HTML forms.
At the end of this tutorial, you will have a very simple semi-functioning login page. You
will have learnt several basic features provided by Struts and you will also have learnt
how these features are implemented using the IDE. Specifically, you will use Struts tags
in a JSP page, validate a field using a Struts actionform bean, and navigate between
pages using a Struts action class. You will also be shown how to add various ancillary Struts
functionalities, such as "Cancel" and "Logout."
For a more fine-grained introduction to Struts, see How
does Struts work? on the official Struts website.
Contents

To follow this tutorial, you need the following software and resources.
| NetBeans IDE |
Web and Java EE installation
version 6.1 or
version 6.0 |
| Java Development Kit (JDK) |
version 6
or version 5 |
GlassFish application server
or
Tomcat servlet container |
V2
version 6.x |
Notes:
- The Web and Java EE installation enables you to optionally install the
GlassFish V2 application server and the Apache Tomcat servlet container 6.0.x.
You must install one of these to work through this tutorial.
- If you need to compare your project with a working solution, you can
download
the sample application.
Setting Up a Struts Application
In the IDE, a Struts application is nothing more than a normal web application accompanied
by the Struts libraries and configuration files. You create a Struts application in the same
way as you create any other web application in the IDE - using the New Web Application wizard,
with the additional step of indicating that you want the Struts libraries and configuration
files to be included in your application.
- Choose File > New Project. Under Categories, select Web. Under Projects, select Web
Application and click Next.
- In the Name and Location panel, do the following:
- Under Project Name, enter LoginPage.
- Change the Project Location to any directory on your computer. From now on, this
directory is referred to as $PROJECTHOME.
- Select the server to which you want to deploy your application. Only servers
that are registered with the IDE are listed. (To register a server, click Add
next to the Server drop-down list.)
- Notice that the Context Path is /LoginPage.
- Click Next.
- In the Frameworks panel, select Struts 1.2.9:
Do not change any of the values in the lower region of this panel. They serve the following
purposes:
- Action Servlet Name: Hardcoded specification of the name of
the servlet entry for the Struts action servlet. The web.xml deployment
descriptor contains a servlet entry for the action servlet, specifying the appropriate
Struts specific parameters, such as the name of the servlet class and the path
to the struts-config.xml configuration file.
- Action URL Pattern: Allows the appropriate patterns which should
be mapped to the Struts action controller to be specified. This generates a
corresponding web.xml servlet mapping entry to map the specified URI
pattern to the action servlet. By default, only the *.do pattern is
mapped.
- Application Resource: Lets you specify the resource bundle which
will be used in the struts-config.xml file for localizing messages. By
default, this is com.myapp.struts.ApplicationResource.
- Add Struts TLDs: Lets you generate tag library descriptors for
the Struts tag libraries. A tag library descriptor is an XML document which contains
additional information about the entire tag library as well as each individual
tag. In general, this is not necessary, because you can refer to on-line URIs
rather than local TLD files.
- Click Finish.
The IDE creates the $PROJECTHOME/LoginPage project folder in your file system.
As with any web application in the IDE, the project folder contains all of your sources and
the IDE's project metadata, such as the Ant build script. However, your web application in
addition has all of the Struts libraries on its classpath. Not only are they on the application's
classpath, but they are included in the project and will be packaged with it later when you
build the project.
The project opens in the IDE. You can view its logical structure in the Projects window and
its file structure in the Files window. For example, the Projects window should now look as
follows:

In the Configuration Files node, the application includes all the Struts-specific configuration
files, of which struts-config.xml is the most important. Also, within the Configuration
Files node, in order to handle Struts processing, the Struts controller servlet is mapped
in the web.xml deployment descriptor:
<servlet>
<servlet-name>action</servlet-name>
<servlet-class>org.apache.struts.action.ActionServlet</servlet-class>
<init-param>
<param-name>config</param-name>
<param-value>/WEB-INF/struts-config.xml</param-value>
</init-param>
<init-param>
<param-name>debug</param-name>
<param-value>2</param-value>
</init-param>
<init-param>
<param-name>detail</param-name>
<param-value>2</param-value>
</init-param>
<load-on-startup>2</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>action</servlet-name>
<url-pattern>*.do</url-pattern>
</servlet-mapping>
Above, the Struts servlet (org.apache.struts.action.ActionServlet) is specified as
the servlet that controls all requests for the mapping .do. In addition, the web.xml
file specifies that the Struts servlet is configured by means of the struts-config.xml
file that is found in the WEB-INF folder.
Developing a Struts Application
Developing a Struts application is similar to developing any other kind of web application
in the IDE. You use components such as JSP pages, servlets, listeners, and filters. However,
you complement your web development toolkit by using the facilities provided by Struts via
the IDE. For example, you use templates in the IDE to create Struts action classes and Struts
actionform beans. On top of that, the IDE automatically registers these classes in
the struts-config.xml file and lets you extend this file very easily via menu items
in the Source Editor's pop-up menu.
Using Struts Custom Tag Libraries in a JSP Page
Many web applications use JavaServer Pages (JSP) for the view in the MVC paradigm, so
Struts provides custom tag libraries which facilitate interaction with HTML forms. These
can be very easily and smoothly set up and used in a JSP page in the IDE.
- Right-click the LoginPage project node, choose New > JSP, and name the
new JSP page loginForm. Click Finish.
- In the Source Editor, change the content of the <h2> tags to Login
Form and do the same for the text in the <title> tags.
- Copy these first two taglib directives from the welcomeStruts.jsp file to
the top of your new loginForm.jsp file:
<%@ taglib uri="http://jakarta.apache.org/struts/tags-bean" prefix="bean" %>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-html" prefix="html" %>
- In loginForm.jsp, below the <h2> tags, add the following:
<html:form action="login">
<html:submit value="Login" />
</html:form>
Notice that when you type in the Source Editor, the IDE provides you with code completion
for Struts tags, as well as the Struts Javadoc:
Whenever you finish typing in the Source Editor, you can neaten the code by right-clicking
and choosing Format (Alt-Shift-F).
- In the Component Palette (Ctrl-Shift-8) on the right side of the Source Editor, within
the HTML section, drag the Table item to just above the <html:submit value="Login" />
line. The Insert Table dialog box pops up. Set both the rows and Ccolumns to 1,
so that you will create a table consisting of one row and one column. Click OK.
The loginForm.jsp now looks as follows:
<html:form action="login">
<table border="1">
<thead>
<tr>
<th></th>
</tr>
</thead>
<tbody>
<tr>
<td></td>
</tr>
</tbody>
</table>
<html:submit value="Login" />
</html:form>
- In between the <th> tags, type the following:
<bean:message key="login.name" />
In between the <td> tags, type the following:
<html:text property="name" />
The body of loginForm.jsp is now as follows:

- In the Projects window, expand the Source Packages node, expand the com.myapp.struts
node, and double-click the ApplicationResource.properties file so that it
opens in the Source Editor. Add login.name as a key, anywhere in the
ApplicationResource.properties file, and add a meaningful message. For example:
login.name=Name
Using Struts to Validate a Field in a JSP Page
A Struts actionform bean represents data shared between the view (in this case,
a JSP page) and the Struts action class. An actionform bean is available both
for populating the view and for providing input to an action class. An actionform
bean also has a validate method to allow input mapped from the view to be verified.
- Right-click the LoginPage project node and choose New > Other. In the
Struts category choose Struts ActionForm Bean and click Next. Notice that your actionform
bean is named "NewStrutsActionForm". Leave the default name for purposes
of this tutorial. Select com.myapp.struts in the Package drop-down list
and click Finish.
The actionform bean opens in the Source Editor. By default, the IDE provides
it with a String called name and an int called number.
Both fields also have getters and setters defined for them.
- Open struts-config.xml in the Source Editor and note that it contains, among
other things, the following:
<form-beans>
<form-bean name="NewStrutsActionForm" type="com.myapp.struts.NewStrutsActionForm" />
</form-beans>
Hold down the Ctrl key and move your mouse over the actionform bean's fully
qualified class name:
A hyperlink appears. Click it to navigate to the actionform bean.
- Now browse through the actionform bean in the Source Editor. Look at the
validate method that the IDE created for you:
public ActionErrors validate(ActionMapping mapping, HttpServletRequest request) {
ActionErrors errors = new ActionErrors();
if (getName() == null || getName().length() < 1) {
errors.add("name", new ActionMessage("error.name.required"));
// TODO: add 'error.name.required' key to your resources
}
return errors;
}
Notice that the field called name is validated by default. If validation
fails, which happens when no name is entered in the JSP page, a message that is identified
by error.name.required is returned.
- Following the TODO instruction that the IDE put in the validate
method for you, add error.name.required as a key to the ApplicationResource.properties
file and add a meaningful message. For example:
error.name.required=Enter a name!
At the top of the file, to customize the formatting of your error message, change
the first four keys to the following:
errors.header=
errors.prefix=<span style="color: red" >
errors.suffix=</span>
errors.footer=
- Specify where you want the error message to be rendered, by adding the following
line in loginForm.jsp, right above the closing </html:form>
tag:
<html:errors />
Using Struts to Navigate between JSP Pages
A Struts action class is executed in response to a user request and commonly interacts
with the model through a business delegate. The responsibility of an action class is
to provide navigation and forward control to the appropriate view.
- Right-click the LoginPage project node and choose New > Other. In the
Struts category choose Struts Action and click Next.
- In the Name and Location panel, notice that your action class is called "NewStrutsAction".
Leave the default name for purposes of this tutorial.
- Select com.myapp.struts in the Package drop-down list.
- Type login in Action Path (the content of Action Path is therefore now /login).
Click Next.
- In ActionForm Bean, Parameter, notice that the IDE suggests that you associate the
action class with the actionform bean that you created in the previous step.
In Input Resource, browse to your loginForm.jsp page. Click Finish.
- Open struts-config.xml in the Source Editor and note that it contains, among
other things, the following:
<action-mappings>
<action input="/loginForm.jsp"
name="NewStrutsActionForm"
path="/login"
scope="session"
type="com.myapp.struts.NewStrutsAction" />
<action path="/Welcome"
forward="/welcomeStruts.jsp" />
</action-mappings>
If you want the action class to function per request, instead of per session, put
the cursor in the scope attribute and press Ctrl-Space:
Choose Request.
- Hold down the Ctrl key and move your mouse over the action class's fully qualified
class name:
A hyperlink appears. Click it to navigate to the action class.
- Browse through the action class and look at the execute method:
public ActionForward execute(ActionMapping mapping, ActionForm form,
HttpServletRequest request, HttpServletResponse response)
throws Exception {
return mapping.findForward(SUCCESS);}
Notice the definition of SUCCESS, at the top of the NewStrutsAction:
private final static String SUCCESS = "success";
The SUCCESS string declaration specifies that this action class forwards
to the output view called success.
- You need to define a page that will be displayed when the output view above is called.
So, create another JSP in the same location as loginForm.jsp and call it
loginSuccessful. In the Source Editor, change the default content of the
<h2> tags in the new JSP files to Login Successful! and do
the same for the text in the <title> tags.
- Open struts-config.xml in the Source Editor, right-click anywhere in the
/login action mapping, and choose Struts > Add Forward. The Add Forward
dialog box opens. Type success in Forward Name. Browse to loginSuccessful.jsp
in Resource File. The dialog box should now look as follows:
Click Add. Notice that struts-config.xml now shows the following (new code
in bold):
<action-mappings>
<action input="/loginForm.jsp"
name="NewStrutsActionForm"
path="/login"
scope="session"
type="com.myapp.struts.NewStrutsAction">
<forward name="success"
path="/loginSuccessful.jsp"/>
</action>
<action path="/Welcome"
forward="/welcomeStruts.jsp"/>
</action-mappings>
Building and Running the Struts Application
The IDE uses an Ant build script to build and run your web application. The IDE generated
the build script when you created the application, basing it on the options you entered in
the New Project wizard and the project's Project Properties dialog box.
- Right-click the LoginPage project node and choose Properties. In the Project
Properties dialog box, click the Run node. In Relative URL, type login.do. Click
OK.
Remember that at the start of this tutorial, you mapped
the .do mapping to the Struts controller servlet. Now, when you run the
application and the .do mapping is used, the Struts controller servlet knows
that it has to handle the request.
- Right-click the project and choose Run. The IDE builds the web application and deploys
it, using the server you specified when creating the project. The browser opens and displays
the loginForm.jsp page:
Only if field-level validation succeeds, so that the action class's execute
method returns the SUCCESS output view, does Struts call the loginsuccesful.jsp
page. To pass validation, all that you need to do is add any value to the Name row in
the loginForm.jsp page. Then, loginSuccessful.jsp is displayed:
Of course, as pointed out at the start of this quick start guide, this is not a complete login
form; it merely shows you what the basis of such a form could look like in Struts. The following
section shows you how quickly and easily the login form can be extended with a variety of
standard functionality.
Adding More Functionality to the Struts Application
Struts simplifies and organizes an application in many more ways than can be listed here.
However, here are some simple extensions to your existing login page, using Struts.
Using Struts to Add "Cancel" Functionality
In this section, we add Cancel functionality, which is handled by Struts.
- In loginForm.jsp, below the <html:submit> line, create the
Cancel button by adding the following:
<html:cancel />
- Add these lines to the execute method in org.myapp.struts.NewStrutsAction:
if (isCancelled(request)) {
return mapping.findForward(CANCEL);
}
Press Ctrl-Space within the isCancelled method and then read the Javadoc
to understand the method:
Declare the definition of CANCEL at the top of the NewStrutsAction
class, right below the definition of SUCCESS:
private final static String CANCEL = "cancel";
- You need to define a page that will be displayed when CANCEL is called.
So, create another JSP in the same location as loginForm.jsp and call it
loginCancel. In the Source Editor, change the default content of the <h2>
tags in the new JSP files to Login Cancelled! and do the same for the text
in the <TITLE> tags.
- Open struts-config.xml in the Source Editor, right-click anywhere in the
/login action mapping, and choose Struts > Add Forward. The Add Forward
dialog box opens. Type cancel in Forward Name. Browse to loginCancel.jsp
in Resource File. The dialog box should now look as follows:

- Click Add. Notice that struts-config.xml now shows the following (new code
in bold):
<action-mappings>
<action input="/loginForm.jsp"
name="NewStrutsActionForm"
path="/login"
scope="session"
type="com.myapp.struts.NewStrutsAction">
<forward name="success"
path="/loginSuccessful.jsp"/>
<forward name="cancel"
path="/loginCancel.jsp"/>
</action>
<action path="/Welcome"
forward="/welcomeStruts.jsp"/>
</action-mappings>
- In Struts 1.2.9 and 1.3, note that there are changes in cancellation functionality,
as described here.
As a result, you need to add the line below (in bold):
<action-mappings>
<action input="/loginForm.jsp"
name="NewStrutsActionForm"
path="/login"
scope="session"
type="com.myapp.struts.NewStrutsAction">
<forward name="success"
path="/loginSuccessful.jsp"/>
<forward name="cancel"
path="/loginCancel.jsp"/>
<set-property property="cancellable" value="true"/>
</action>
<action path="/Welcome"
forward="/welcomeStruts.jsp"/>
</action-mappings>
- Run the application again and notice the new Cancel button:
Click it and notice that the new loginCancel.jsp page is opened in the browser.
Using Struts to Add "Logout" Functionality
- In loginForm.jsp, below the <h2> tags, create the Logout
link by adding the following:
<html:link action="/logout">Logout</html:link>
- You need to define a page that will be displayed when the Logout link is clicked.
So, create another JSP in the same location as loginForm.jsp and call it
loginOut. In the Source Editor, change the default content of the <h2>
tags in the new JSP files to Have a Nice Day! and do the same for the text
in the <title> tags.
- Open struts-config.xml in the Source Editor, right-click anywhere, and choose
Struts > Add Forward/Include Action. The Add Forward/Include Action dialog box opens.
- Type logout in Action Path. Browse to loginOut.jsp in Resource File.
The dialog box should now look as follows:

- Click Add. Notice that struts-config.xml now shows the following (new code in
bold):
<action-mappings>
<action input="/loginForm.jsp"
name="NewStrutsActionForm"
path="/login"
scope="session"
type="com.myapp.struts.NewStrutsAction">
<forward name="success"
path="/loginSuccessful.jsp"/>
<forward name="cancel"
path="/loginCancel.jsp"/>
</action>
<action forward="/loginOut.jsp"
path="/logout"/>
<action path="/Welcome"
forward="/welcomeStruts.jsp"/>
</action-mappings>
- Run the application again and notice the new Logout link:
Click it and notice that the new loginOut.jsp page is opened in the browser.
Using Struts to Add "Reset" Functionality
- In loginForm.jsp, between the Submit and Cancel buttons, create the Reset
button by adding the following:
<html:reset />
- Run the application again and notice the new Reset button:
Type something in the Name row, click Reset, and notice that Struts empties the table.
See Also
For related tutorials, see the following resources: