Struts 2 Tutorial
Struts 2 Tutorial
Struts 2
Audience
This tutorial is designed for Java programmers who are interested to learn the
basics of Struts 2.x framework and its applications.
Prerequisites
Before proceeding with this tutorial, you should have a good understanding of the
Java programming language. A basic understanding of MVC Framework and JSP
or Servlet is very helpful.
Struts 2
Table of Contents
About the Tutorial .................................................................................................................................. i
Audience ................................................................................................................................................ i
Prerequisites .......................................................................................................................................... i
Disclaimer & Copyright ........................................................................................................................... i
Table of Contents .................................................................................................................................. ii
ii
Struts 2
Configuration Files............................................................................................................................... 17
To Enable Detailed Log ........................................................................................................................ 19
Procedure for Executing the Application ............................................................................................. 19
iii
Struts 2
The Freemaker Result Type ................................................................................................................. 51
The Redirect Result Type ..................................................................................................................... 53
iv
Struts 2
Create Views ....................................................................................................................................... 89
Create Action ....................................................................................................................................... 89
Configuration Files............................................................................................................................... 91
How this Validation Works? ................................................................................................................ 94
Xml Based Validation ........................................................................................................................... 94
STRUTS 2 - LOCALIZATION................................................................................................ 97
Resource Bundles ................................................................................................................................ 97
Access the messages ............................................................................................................................ 98
Localization Example ........................................................................................................................... 98
Struts 2
The Iterator Tags Detailed Example ................................................................................................ 138
The Merge Tag ................................................................................................................................... 145
The Merge Tag Detailed Example.................................................................................................... 146
The Append Tag................................................................................................................................. 151
The Append Tag Detailed Example ................................................................................................. 152
The Generator Tag ............................................................................................................................. 157
The Generator Tag Detailed Example .............................................................................................. 158
vi
Struts 2
The URLTag ........................................................................................................................................ 204
vii
Struts 2
Model - The lowest level of the pattern which is responsible for maintaining
data.
View - This is responsible for displaying all or a portion of the data to the user.
Controller - Software Code that controls the interactions between the Model
and View.
MVC is popular as it isolates the application logic from the user interface layer and
supports separation of concerns. Here the Controller receives all requests for the
application and then works with the Model to prepare any data needed by the
View. The View then uses the data prepared by the Controller to generate a final
presentable response. The MVC abstraction can be graphically represented as
follows.
Struts 2
The Model
The model is responsible for managing the data of the application. It responds to
the request from the view and it also responds to instructions from the controller
to update itself.
The View
It means presentation of data in a particular format, triggered by a controller's
decision to present the data. They are script-based templating systems like JSP,
ASP, PHP and very easy to integrate with AJAX technology.
The Controller
The controller is responsible for responding to the user input and perform
interactions on the data model objects. The controller receives the input, it
validates the input and then performs the business operation that modifies the
state of the data model.
Struts2 is a MVC based framework. In the coming chapters, let us see how we
can use the MVC methodology within Struts2.
STRUT 2 OVERVIEW
Struts 2
Struts2 is a popular and mature web application framework based on the MVC
design pattern. Struts2 is not just a new version of Struts 1, but it is a complete
rewrite of the Struts architecture.
The Webwork framework initially started with Struts framework as the basis and
its goal was to offer an enhanced and improved framework built on Struts to make
web development easier for the developers.
After a while, the Webwork framework and the Struts community joined hands to
create the famous Struts2 framework.
Pojo Forms and Pojo Actions - Struts2 has done away with the Action
Forms that were an integral part of the Struts framework. With Struts2, you
can use any POJO to receive the form input. Similarly, you can now see any
POJO as an Action class.
Tag Support - Struts2 has improved the form tags and the new tags which
allow the developers to write less code.
Struts 2
View Technologies - Struts2 has a great support for multiple view options
(JSP, Freemarker, Velocity and XSLT)
Listed above are the Top 10 features of Struts 2 which makes it as an Enterprise
ready framework.
Struts 2 Disadvantages
Though Struts 2 comes with a list of great features, there are some limitations of
the current version - Struts 2 which needs further improvement. Listed are some
of the main points:
Bigger Learning Curve - To use MVC with Struts, you have to be comfortable
with the standard JSP, Servlet APIs and a large & elaborate framework.
Poor Documentation - Compared to the standard servlet and JSP APIs, Struts
has fewer online resources, and many first-time users find the online Apache
documentation confusing and poorly organized.
Final note, a good framework should provide generic behavior that many different
types of applications can make use of it.
Struts 2 is one of the best web frameworks and being highly used for the
development of Rich Internet Applications (RIA).
ENVIRONMENT SETUP
Struts 2
Our first task is to get a minimal Struts 2 application running. This chapter will
guide you on how to prepare a development environment to start your work with
Struts 2.
I assume that you already have JDK (5+), Tomcat and Eclipse installed on your
machine. If you do not have these components installed, then follow the given
steps on fast track:
Struts 2
or
C:\apache-tomcat-6.0.33\bin\startup.bat
Tomcat can be started by executing the following commands on Unix (Solaris,
Linux, etc.) machine:
$CATALINA_HOME/bin/startup.sh
or
/usr/local/apache-tomcat-6.0.33/bin/startup.sh
After a successful startup, the default web applications included with Tomcat will
be available by visiting http://localhost:8080/. If everything is fine, then it
should display the following result:
Struts 2
Further information about configuring and running Tomcat can be found in the
documentation included here, as well as on the Tomcat website:
http://tomcat.apache.org
Tomcat can be stopped by executing the following commands on windows
machine:
%CATALINA_HOME%\bin\shutdown
or
C:\apache-tomcat-5.5.29\bin\shutdown
Tomcat can be stopped by executing the following commands on Unix (Solaris,
Linux, etc.) machine:
$CATALINA_HOME/bin/shutdown.sh
or
/usr/local/apache-tomcat-5.5.29/bin/shutdown.sh
Struts 2
Struts 2
Make a choice whether you want to install Struts2 on Windows, or Unix and
then proceed to the next step to download .zip file for windows and .tz file
for Unix.
Download
the
latest
version
http://struts.apache.org/download.cgi.
of
Struts2
binaries
from
Second step is to extract the zip file in any location, I downloaded &
extracted struts-2.2.3-all.zip in c:\ folder on my Windows 7 machine so that I
have all the jar files into C:\struts-2.2.3\lib. Make sure you set your CLASSPATH
variable properly otherwise you will face problem while running your application.
STRUTS 2 ARCHITECTURE
Struts 2
From a high level, Struts2 is a pull-MVC (or MVC2) framework. The Model-ViewController pattern in Struts2 is implemented with the following five core
components:
Actions
Interceptors
Value Stack / OGNL
Results / Result types
View technologies
Struts 2 is slightly different from a traditional MVC framework, where the action
takes the role of the model rather than the controller, although there is some
overlap.
The above diagram depicts the Model, View and Controller to the Struts2 high level
architecture. The controller is implemented with a Struts2 dispatch servlet filter
as well as interceptors, this model is implemented with actions, and the view is a
10
Struts 2
combination of result types and results. The value stack and OGNL provides
common thread, linking and enabling integration between the other components.
Apart from the above components, there will be a lot of information that relates
to configuration. Configuration for the web application, as well as configuration for
actions, interceptors, results, etc.
This is the architectural overview of the Struts 2 MVC pattern. We will go through
each component in more detail in the subsequent chapters.
User sends a request to the server for requesting for some resource (i.e.
pages).
The Filter Dispatcher looks at the request and then determines the
appropriate Action.
Finally, the result is prepared by the view and returns the result to the user.
11
STRUTS 2 EXAMPLES
Struts 2
As you have already learnt from the Struts 2 architecture, when you click on a
hyperlink or submit an HTML form in a Struts 2 web-application, the input is
collected by the Controller which is sent to a Java class called Actions. After the
Action is executed, a result selects a resource to render the response. The resource
is generally a JSP, but it can also be a PDF file, an Excel spreadsheet, or a Java
applet window.
Assuming that you already have built your development environment. Now, let us
proceed for building our first Hello World Struts2 project. The aim of this project
is to build a web application that collects the user's name and displays "Hello
World" followed by the user name.
We would have to create following four components for any Struts 2 project:
S.No
1
Interceptors
Create interceptors if required, or use existing interceptors. This is part
of Controller.
View
Create a JSPs to interact with the user to take input and to present the
final messages.
Configuration Files
Create configuration files to couple the Action, View and Controllers.
These files are struts.xml, web.xml, struts.properties.
I am going to use Eclipse IDE, so that all the required components will be created
under a Dynamic Web Project. Let us now start with creating Dynamic Web
Project.
12
Struts 2
Select all the default options in the next screens and finally check Generate
Web.xml deployment descriptor option. This will create a dynamic web project
for you in Eclipse. Now go with Windows > Show View > Project Explorer,
and you will see your project window something as below:
13
Struts 2
Now copy following files from struts 2 lib folder C:\struts-2.2.3\lib to our
project's WEB-INF\lib folder. To do this, you can simply drag and drop all the
following files into WEB-INF\lib folder.
commons-fileupload-x.y.z.jar
commons-io-x.y.z.jar
commons-lang-x.y.jar
commons-logging-x.y.z.jar
commons-logging-api-x.y.jar
freemarker-x.y.z.jar
javassist-.xy.z.GA
ognl-x.y.z.jar
struts2-core-x.y.z.jar
xwork-core.x.y.z.jar
14
Struts 2
The Action class responds to a user action when user clicks a URL. One or more
of the Action class's methods are executed and a String result is returned. Based
on the value of the result, a specific JSP page is rendered.
package com.tutorialspoint.struts2;
Create a View
We need a JSP to present the final message, this page will be called by Struts 2
framework when a predefined action will happen and this mapping will be defined
in struts.xml file. So let us create the below jsp file HelloWorld.jsp in the
WebContent folder in your eclipse project. To do this, right click on the
WebContent folder in the project explorer and select New >JSP File.
15
Struts 2
Struts 2
Configuration Files
We need a mapping to tie the URL, the HelloWorldAction class (Model), and the
HelloWorld.jsp (the view) together. The mapping tells the Struts 2 framework
which class will respond to the user's action (the URL), which method of that class
will be executed, and what view to render based on the String result that method
returns.
So let us create a file called struts.xml. Since Struts 2 requires struts.xml to be
present in the classes folder. Hence, create struts.xml file under the
WebContent/WEB-INF/classes folder. Eclipse does not create the "classes" folder
by default, so you need to do this yourself. To do this, right click on the WEB-INF
folder in the project explorer and select New > Folder. Your struts.xml should
look like:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE struts PUBLIC
"-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
"http://struts.apache.org/dtds/struts-2.0.dtd">
<struts>
<constant name="struts.devMode" value="true" />
<package name="helloworld" extends="struts-default">
<action name="hello"
class="com.tutorialspoint.struts2.HelloWorldAction"
method="execute">
<result name="success">/HelloWorld.jsp</result>
17
Struts 2
</action>
</package>
</struts>
Few words which need to be understood regarding the above configuration file.
Here, we set the constant struts.devMode to true, because we are working in
development environment and we need to see some useful log messages. Then,
we define a package called helloworld.
Creating a package is useful when you want to group your actions together. In
our example, we named our action as "hello" which is corresponding to the
URL /hello.action and is backed up by theHelloWorldAction.class.
The execute method of HelloWorldAction.class is the method that is run when
the URL /hello.action is invoked. If the outcome of the execute method returns
"success", then we take the user to HelloWorld.jsp.
Next step is to create a web.xml file which is an entry point for any request to
Struts 2. The entry point of Struts2 application will be a filter defined in
deployment descriptor (web.xml). Hence, we will define an entry of
org.apache.struts2.dispatcher.FilterDispatcher class in web.xml. The web.xml file
needs to be created under the WEB-INF folder under WebContent. Eclipse had
already created a skeleton web.xml file for you when you created the project. So,
lets just modify it as follows:
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
id="WebApp_ID" version="3.0">
<display-name>Struts 2</display-name>
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
<filter>
<filter-name>struts2</filter-name>
<filter-class>
org.apache.struts2.dispatcher.FilterDispatcher
18
Struts 2
</filter-class>
</filter>
<filter-mapping>
<filter-name>struts2</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
</web-app>
We have specified index.jsp to be our welcome file. Then we have configured the
Struts2 filter to run on all urls (i.e, any url that match the pattern /*)
19
Struts 2
Enter a value "Struts2" and submit the page. You should see the next page
Note that you can define index as an action in struts.xml file and in that case you
can call index page as http://localhost:8080/HelloWorldStruts2/index.action.
Check below how you can define index as an action:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE struts PUBLIC
"-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
"http://struts.apache.org/dtds/struts-2.0.dtd">
<struts>
<constant name="struts.devMode" value="true" />
20
Struts 2
<action name="hello"
class="com.tutorialspoint.struts2.HelloWorldAction"
method="execute">
<result name="success">/HelloWorld.jsp</result>
</action>
</package>
</struts>
21
STRUTS 2 CONFIGURATION
Struts 2
This chapter will take you through basic configuration which is required for a
Struts 2 application. Here we will see what can be configured with the help of few
important
configuration
files
like
web.xml,
struts.xml,
strutsconfig.xml and struts.properties
Honestly speaking, you can start working by just using web.xml and struts.xml
configuration files (as you have already witnessed in our previous chapter where
our example worked using these two files). However, for your knowledge we will
explain regarding other files also.
<display-name>Struts 2</display-name>
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
22
Struts 2
</welcome-file-list>
<filter>
<filter-name>struts2</filter-name>
<filter-class>
org.apache.struts2.dispatcher.FilterDispatcher
</filter-class>
</filter>
<filter-mapping>
<filter-name>struts2</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
</web-app>
Note that we map the Struts 2 filter to /*, and not to /*.action which means that
all urls will be parsed by the struts filter. We will cover this when we will go through
the Annotations chapter.
Struts 2
method="execute">
<result name="success">/HelloWorld.jsp</result>
</action>
<-- more actions can be listed here -->
</package>
<-- more packages can be listed here -->
</struts>
The first thing to note is the DOCTYPE. All struts configuration file needs to have
the correct doctype as shown in our little example. <struts> is the root tag
element, under which we declare different packages using <package> tags. Here
<package> allows separation and modularization of the configuration. This is very
useful when you have a large project and project is divided into different modules.
For example, if your project has three domains - business_application,
customer_application and staff_application, then you could create three packages
and store associated actions in the appropriate package.
The package tag has the following attributes:
Attribute
Description
name (required)
extends
abstract
namesapce
The constant tag along with name and value attributes should be used to override
any of the following properties defined in default.properties, like we just
set struts.devMode property. Setting struts.devMode property allows us to see
more debug messages in the log file.
We define action tags corresponds to every URL we want to access and we define
a class with execute() method which will be accessed whenever we will access
corresponding URL.
24
Struts 2
Results determine what gets returned to the browser after an action is executed.
The string returned from the action should be the name of a result. Results are
configured per-action as above, or as a "global" result, available to every action
in a package. Results have optional name and type attributes. The default name
value is "success".
Struts.xml file can grow big over time and so breaking it by packages is one way
of modularizing it, but Struts offers another way to modularize the struts.xml file.
You could split the file into multiple xml files and import them in the following
fashion.
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE struts PUBLIC
"-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
"http://struts.apache.org/dtds/struts-2.0.dtd">
<struts>
<include file="my-struts1.xml"/>
<include file="my-struts2.xml"/>
</struts>
The other configuration file that we haven't covered is the struts-default.xml. This
file contains the standard configuration settings for Struts and you would not have
to touch these settings for 99.99% of your projects. For this reason, we are not
going into too much detail on this file. If you are interested, take a look into the
at the default.properties file available in struts2-core-2.2.3.jar file.
form-beans
25
Struts 2
This is where you map your ActionForm subclass to a name. You use this
name as an alias for your ActionForm throughout the rest of the strutsconfig.xml file, and even on your JSP pages.
3
global forwards
This section maps a page on your webapp to a name. You can use this
name to refer to the actual page. This avoids hardcoding URLs on your
web pages.
action-mappings
This is where you declare form handlers and they are also known
as action mappings.
controller
This section configures Struts internals and rarely used in practical
situations.
plug-in
This section tells Struts where to find your properties files, which contain
prompts and error messages
<struts-config>
26
Struts 2
</struts-config>
For more detail on struts-config.xml file, kindly check your struts documentation.
27
Struts 2
The values configured in this file will override the default values configured in
default.properties which is contained in the struts2-core-x.y.z.jar distribution.
There are a couple of properties that you might consider changing using the
struts.properties file:
### When set to true, Struts will act much more friendly for developers
struts.devMode = true
28
STRUTS 2 ACTIONS
Struts 2
Actions are the core of the Struts2 framework, as they are for any MVC (Model
View Controller) framework. Each URL is mapped to a specific action, which
provides the processing logic which is necessary to service the request from the
user.
But the action also serves in two other important capacities. Firstly, the action
plays an important role in the transfer of data from the request through to the
view, whether its a JSP or other type of result. Secondly, the action must assist
the framework in determining which result should render the view that will be
returned in the response to the request.
Create Action
The only requirement for actions in Struts2 is that there must be one noargument method that returns either a String or Result object and must be a
POJO. If the no-argument method is not specified, the default behavior is to use
the execute() method.
Optionally you can extend the ActionSupport class which implements six
interfaces including Action interface. The Action interface is as follows:
public interface Action {
public static final String SUCCESS = "success";
public static final String NONE = "none";
public static final String ERROR = "error";
public static final String INPUT = "input";
public static final String LOGIN = "login";
public String execute() throws Exception;
}
Let us take a look at the action method in the Hello World example:
package com.tutorialspoint.struts2;
Struts 2
import com.opensymphony.xwork2.ActionSupport;
30
Struts 2
Create a View
Let us create the below jsp file HelloWorld.jsp in the WebContent folder in your
eclipse project. To do this, right click on the WebContent folder in the project
explorer and select New >JSP File. This file will be called in case return result is
SUCCESS which is a String constant "success" as defined in Action interface:
31
Struts 2
32
Struts 2
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Hello World</title>
</head>
<body>
<h1>Hello World From Struts2</h1>
<form action="hello">
<label for="name">Please enter your name</label><br/>
<input type="text" name="name"/>
<input type="submit" value="Say Hello"/>
</form>
</body>
</html>
That's it, there is no change required for web.xml file, so let us use the same
web.xml which we had created in Examples chapter. Now, we are ready to run
our Hello World application using Struts 2 framework.
33
Struts 2
Let us enter a word as "SECRET" and you should see the following page:
Now enter any word other than "SECRET" and you should see the following page:
34
Struts 2
Struts 2
Struts 2
class="com.tutorialspoint.struts2.SomeOtherClass"
method="execute">
<result name="success">/Something.jsp</result>
<result name="error">/AccessDenied.jsp</result>
</action>
</package>
</struts>
As you can see in the above hypothetical example, the action results SUCCESS
and ERRORs are duplicated.
To get around this issue, it is suggested that you create a class which contains the
result outcomes.
37
STRUTS 2 INTERCEPTORS
Struts 2
Interceptors are conceptually the same as servlet filters or the JDKs Proxy class.
Interceptors allow for crosscutting functionality to be implemented separately
from the action as well as the framework. You can achieve the following using
interceptors:
Many of the features provided in the Struts2 framework are implemented using
interceptors;
Examples include exception handling, file uploading, lifecycle callbacks, etc. In
fact, as Struts2 emphasizes much of its functionality on interceptors, it is not likely
to have 7 or 8 interceptors assigned per action.
checkbox
Assists in managing check boxes by adding a parameter value of false
for check boxes that are not checked.
conversionError
Places error information from converting strings to parameter types into
the action's field errors.
createSession
Automatically creates an HTTP session if one does not already exist.
38
Struts 2
debugging
Provides several different debugging screens to the developer.
execAndWait
Sends the user to an intermediary waiting page while the action executes
in the background.
exception
Maps exceptions that are thrown from an action to a result, allowing
automatic exception handling via redirection.
fileUpload
Facilitates easy file uploading.
i18n
Keeps track of the selected locale during a user's session.
10
logger
Provides simple logging by outputting the name of the action being
executed.
11
params
Sets the request parameters on the action.
12
prepare
This is typically used to do pre-processing work, such as setup database
connections.
13
profile
Allows simple profiling information to be logged for actions.
14
scope
Stores and retrieves the action's state in the session or application scope.
15
ServletConfig
39
Struts 2
timer
Provides simple profiling information in the form of how long the action
takes to execute.
17
token
Checks the action for a valid token to prevent duplicate form submission.
18
validation
Provides validation support for actions
Please look into Struts 2 documentation for complete detail on the abovementioned interceptors. But I will show you how to use an interceptor in general
in your Struts application.
40
Struts 2
method="execute">
<interceptor-ref name="params"/>
<interceptor-ref name="timer" />
<result name="success">/HelloWorld.jsp</result>
</action>
</package>
</struts>
Right click on the project name and click Export > WAR File to create a War file.
Then deploy this WAR in the Tomcat's webapps directory. Finally, start Tomcat
server and try to access URL http://localhost:8080/HelloWorldStruts2/index.jsp.
This will produce the following screen:
Now enter any word in the given text box and click Say Hello button to execute
the defined action. Now if you will check the log generated, you will find the
following text:
INFO: Server startup in 3539 ms
27/08/2011 8:40:53 PM
com.opensymphony.xwork2.util.logging.commons.CommonsLogger info
INFO: Executed action [//hello!execute] took 109 ms.
Here bottom line is being generated because of timer interceptor which is telling
that action took total 109ms to be executed.
41
Struts 2
import java.util.*;
import com.opensymphony.xwork2.ActionInvocation;
import com.opensymphony.xwork2.interceptor.AbstractInterceptor;
42
Struts 2
return result;
}
}
As you notice, actual action will be executed using the interceptor
by invocation.invoke()call. So you can do some pre-processing and some postprocessing based on your requirement.
The framework itself starts the process by making the first call to the
ActionInvocation object's invoke(). Each time invoke() is called, ActionInvocation
consults its state and executes whichever interceptor comes next. When all of the
configured interceptors have been invoked, the invoke() method will cause the
action itself to be executed.
The following diagram shows the same concept through a request flow:
43
Struts 2
import com.opensymphony.xwork2.ActionSupport;
Struts 2
this.name = name;
}
}
This is a same class which we have seen in previous examples. We have standard
getters and setter methods for the "name" property and an execute method that
returns the string "success".
Create a View
Let us create the below jsp file HelloWorld.jsp in the WebContent folder in your
eclipse project.
<%@ page contentType="text/html; charset=UTF-8" %>
<%@ taglib prefix="s" uri="/struts-tags" %>
<html>
<head>
<title>Hello World</title>
</head>
<body>
Hello World, <s:property value="name"/>
</body>
</html>
Struts 2
<title>Hello World</title>
</head>
<body>
<h1>Hello World From Struts2</h1>
<form action="hello">
<label for="name">Please enter your name</label><br/>
<input type="text" name="name"/>
<input type="submit" value="Say Hello"/>
</form>
</body>
</html>
The hello action defined in the above view file will be mapped to the
HelloWorldAction class and its execute method using struts.xml file.
Configuration Files
Now, we need to register our interceptor and then call it as we had called default
interceptor in previous example. To register a newly defined interceptor, the
<interceptors>...</interceptors> tags are placed directly under the <package>
tag insstruts.xml file. You can skip this step for a default interceptors as we did
in our previous example. But here let us register and use it as follows:
<struts>
<constant name="struts.devMode" value="true" />
<package name="helloworld" extends="struts-default">
<interceptors>
<interceptor name="myinterceptor"
class="com.tutorialspoint.struts2.MyInterceptor" />
</interceptors>
46
Struts 2
<action name="hello"
class="com.tutorialspoint.struts2.HelloWorldAction"
method="execute">
<interceptor-ref name="params"/>
<interceptor-ref name="myinterceptor" />
<result name="success">/HelloWorld.jsp</result>
</action>
</package>
</struts>
It should be noted that you can register more than one interceptors
inside <package> tag and same time you can call more than one interceptors
inside the <action> tag. You can call same interceptor with the different actions.
The web.xml file needs to be created under the WEB-INF folder under WebContent
as follows:
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
id="WebApp_ID" version="3.0">
<display-name>Struts 2</display-name>
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
<filter>
<filter-name>struts2</filter-name>
<filter-class>
org.apache.struts2.dispatcher.FilterDispatcher
</filter-class>
47
Struts 2
</filter>
<filter-mapping>
<filter-name>struts2</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
</web-app>
Right click on the project name and click Export > WAR File to create a War file.
Then deploy this WAR in the Tomcat's webapps directory. Finally, start Tomcat
server and try to access URL http://localhost:8080/HelloWorldStruts2/index.jsp.
This will produce the following screen:
Now enter any word in the given text box and click Say Hello button to execute
the defined action. Now if you will check the log generated, you will find the
following text at the bottom:
Pre-Processing
Inside action....
Post-Processing
Struts 2
managed with interceptor stacks. Here is an example, directly from the strutsdefault.xml file:
<interceptor-stack name="basicStack">
<interceptor-ref name="exception"/>
<interceptor-ref name="servlet-config"/>
<interceptor-ref name="prepare"/>
<interceptor-ref name="checkbox"/>
<interceptor-ref name="params"/>
<interceptor-ref name="conversionError"/>
</interceptor-stack>
The above stake is called basicStack and can be used in your configuration as
shown below. This configuration node is placed under the <package .../> node.
Each <interceptor-ref .../> tag references either an interceptor or an interceptor
stack that has been configured before the current interceptor stack. It is therefore
very important to ensure that the name is unique across all interceptor and
interceptor stack configurations when configuring the initial interceptors and
interceptor stacks.
We have already seen how to apply interceptor to the action, applying interceptor
stacks is no different. In fact, we use exactly the same tag:
49
Struts 2
As mentioned previously, the <results> tag plays the role of a view in the Struts2
MVC framework. The action is responsible for executing the business logic. The
next step after executing the business logic is to display the view using
the <results> tag.
Often there is some navigation rules attached with the results. For example, if the
action method is to authenticate a user, there are three possible outcomes.
Successful Login
Unsuccessful Login - Incorrect username or password
Account Locked
In this scenario, the action method will be configured with three possible outcome
strings and three different views to render the outcome. We have already seen
this in the previous examples.
But, Struts2 does not tie you up with using JSP as the view technology. Afterall
the whole purpose of the MVC paradigm is to keep the layers separate and highly
configurable. For example, for a Web2.0 client, you may want to return XML or
JSON as the output. In this case, you could create a new result type for XML or
JSON and achieve this.
Struts comes with a number of predefined result types and whatever we've
already seen that was the default result type dispatcher, which is used to
dispatch to JSP pages. Struts allow you to use other markup languages for the
view technology to present the results and popular choices include Velocity,
Freemaker, XSLT and Tiles.
Struts 2
<result
name="success" type="dispatcher">
<param name="location">
/HelloWorld.jsp
</param >
</result>
We can also supply a parse parameter, which is true by default. The parse
parameter determines whether or not the location parameter will be parsed for
OGNL expressions.
<struts>
<constant name="struts.devMode" value="true" />
<package name="helloworld" extends="struts-default">
<action name="hello"
class="com.tutorialspoint.struts2.HelloWorldAction"
method="execute">
<result name="success" type="freemarker">
<param name="location">/hello.fm</param>
</result>
51
Struts 2
</action>
</package>
</struts>
Let us keep our HelloWorldAction.java, HelloWorldAction.jsp and index.jsp files as
we have created them in examples chapter.
Now Right click on the project name and click Export > WAR File to create a War
file.
Then deploy this WAR in the Tomcat's webapps directory. Finally, start Tomcat
server and try to access URL http://localhost:8080/HelloWorldStruts2/index.jsp.
This will produce the following screen:
Enter a value "Struts2" and submit the page. You should see the next page.
52
Struts 2
As you can see, this is exactly same as the JSP view except that we are not tied
to using JSP as the view technology. We have used Freemaker in this example.
53
Struts 2
Named Objects
These objects include #application, #session, #request, #attr and
#parameters and refer to the corresponding servlet scopes
The value stack can be accessed via the tags provided for JSP, Velocity or
Freemarker. There are various tags which we will study in separate chapters, are
used to get and set struts 2.0 value stack. You can get valueStack object inside
your action as follows:
ActionContext.getContext().getValueStack()
Once you have a ValueStack object, you can use the following methods to
manipulate that object:
54
Struts 2
S.No
1
CompoundRoot getRoot()
Get the CompoundRoot which holds the objects pushed onto the stack.
Object peek()
Get the object on the top of the stack without changing the stack.
Object pop()
Get the object on the top of the stack and remove it from the stack.
void push(Object o)
Put this object onto the top of the stack.
int size()
Get the number of objects in the stack.
55
Struts 2
The OGNL
The Object-Graph Navigation Language (OGNL) is a powerful expression
language that is used to reference and manipulate data on the ValueStack. OGNL
also helps in data transfer and type conversion.
The OGNL is very similar to the JSP Expression Language. OGNL is based on the
idea of having a root or default object within the context. The properties of the
default or root object can be referenced using the markup notation, which is the
pound symbol.
As mentioned earlier, OGNL is based on a context and Struts builds an
ActionContext map for use with OGNL. The ActionContext map consists of the
following:
It is important to understand that the Action object is always available in the value
stack. So, therefore if your Action object has properties x and y there are
readily available for you to use.
Objects in the ActionContext are referred using the pound symbol, however, the
objects in the value stack can be directly referenced.
For example, if employee is a property of an action class, then it can be
referenced as follows:
<s:property value="name"/>
instead of
<s:property value="#name"/>
If you have an attribute in session called "login" you can retrieve it as follows:
<s:property value="#session.login"/>
OGNL also supports dealing with collections - namely Map, List and Set. For
example to display a dropdown list of colors, you could do:
<s:select name="color" list="{'red','yellow','green'}" />
The OGNL expression is clever to interpret the "red","yellow","green" as colours
and build a list based on that.
56
Struts 2
The OGNL expressions will be used extensively in the next chapters when we will
study different tags. So rather than looking at them in isolation, let us look at it
using some examples in the Form Tags / Control Tags / Data Tags and Ajax Tags
section.
ValueStack/OGNL Example
Create Action
Let us consider the following action class where we are accessing valueStack and
then setting few keys which we will access using OGNL in our view, i.e., JSP page.
package com.tutorialspoint.struts2;
import java.util.*;
import com.opensymphony.xwork2.util.ValueStack;
import com.opensymphony.xwork2.ActionContext;
import com.opensymphony.xwork2.ActionSupport;
Struts 2
return name;
}
Create Views
Let us create the below jsp file HelloWorld.jsp in the WebContent folder in your
eclipse project. This view will be displayed in case action returns success:
<%@ page contentType="text/html; charset=UTF-8" %>
<%@ taglib prefix="s" uri="/struts-tags" %>
<html>
<head>
<title>Hello World</title>
</head>
<body>
Entered value : <s:property value="name"/><br/>
Value of key 1 : <s:property value="key1" /><br/>
Value of key 2 : <s:property value="key2" /> <br/>
</body>
</html>
We also need to create index.jsp in the WebContent folder whose content is as
follows:
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<%@ taglib prefix="s" uri="/struts-tags"%>
58
Struts 2
Configuration Files
Following is the content of struts.xml file:
<struts>
<constant name="struts.devMode" value="true" />
<package name="helloworld" extends="struts-default">
<action name="hello"
class="com.tutorialspoint.struts2.HelloWorldAction"
method="execute">
<result name="success">/HelloWorld.jsp</result>
59
Struts 2
</action>
</package>
</struts>
Following is the content of web.xml file:
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
id="WebApp_ID" version="3.0">
<display-name>Struts 2</display-name>
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
<filter>
<filter-name>struts2</filter-name>
<filter-class>
org.apache.struts2.dispatcher.FilterDispatcher
</filter-class>
</filter>
<filter-mapping>
<filter-name>struts2</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
</web-app>
Right click on the project name and click Export > WAR File to create a War file.
Then deploy this WAR in the Tomcat's webapps directory.
Finally,
start
Tomcat
server
and
try
to
access
URL
http://localhost:8080/HelloWorldStruts2/index.jsp. This will produce the following
screen:
60
Struts 2
Now enter any word in the given text box and click "Say Hello" button to execute
the defined action. Now, if you will check the log generated, you will find the
following text at the bottom:
Size of the valueStack: 3
This will display the following screen, which will display whatever value you will
enter and value of key1 and key2 which we had put on ValueStack.
61
Struts 2
The Struts 2 framework provides built-in support for processing file upload using
"Form-based File Upload in HTML". When a file is uploaded, it will typically be
stored in a temporary directory and they should be processed or moved by your
Action class to a permanent directory to ensure the data is not lost.
Note: Servers may have a security policy in place that prohibits you from writing
to directories other than the temporary directory and the directories that belong
to your web application.
File uploading in Struts is possible through a pre-defined interceptor
called
FileUpload
interceptor
which
is
available
through
the
org.apache.struts2.interceptor.FileUploadInterceptor class and included as part of
thedefaultStack. Still you can use that in your struts.xml to set various
paramters as we will see below.
Struts 2
</body>
</html>
There is couple of points worth noting in the above example. First, the form's
enctype is set to multipart/form-data. This should be set so that file uploads
are handled successfully by the file upload interceptor. The next point noting is
the form's action method upload and the name of the file upload field - which
is myFile. We need this information to create the action method and the struts
configuration.
Next, let us create a simple jsp file success.jsp to display the outcome of our file
upload in case it becomes success.
<%@ page contentType="text/html; charset=UTF-8" %>
<%@ taglib prefix="s" uri="/struts-tags" %>
<html>
<head>
<title>File Upload Success</title>
</head>
<body>
You have successfully uploaded <s:property value="myFileFileName"/>
</body>
</html>
Following will be the result file error.jsp in case there is some error in uploading
the file:
<%@ page contentType="text/html; charset=UTF-8" %>
<%@ taglib prefix="s" uri="/struts-tags" %>
<html>
<head>
<title>File Upload Error</title>
</head>
<body>
There has been an error in uploading the file.
</body>
</html>
63
Struts 2
import java.io.File;
import org.apache.commons.io.FileUtils;
import java.io.IOException;
import com.opensymphony.xwork2.ActionSupport;
try{
System.out.println("Src File name: " + myFile);
System.out.println("Dst File name: " + myFileFileName);
File destFile
FileUtils.copyFile(myFile, destFile);
}catch(IOException e){
e.printStackTrace();
return ERROR;
}
64
Struts 2
return SUCCESS;
}
public File getMyFile() {
return myFile;
}
public void setMyFile(File myFile) {
this.myFile = myFile;
}
public String getMyFileContentType() {
return myFileContentType;
}
public void setMyFileContentType(String myFileContentType) {
this.myFileContentType = myFileContentType;
}
public String getMyFileFileName() {
return myFileFileName;
}
public void setMyFileFileName(String myFileFileName) {
this.myFileFileName = myFileFileName;
}
}
The uploadFile.java is a very simple class. The important thing to note is that
the FileUpload interceptor along with the Parameters Interceptor does all the
heavy lifting for us.
The FileUpload interceptor makes three parameters available for you by default.
They are named in the following pattern:
[your file name parameter] - This is the actual file that the user has
uploaded. In this example it will be "myFile"
[your file name parameter]ContentType - This is the content type of
the file that was uploaded. In this example it will be "myFileContentType"
[your file name parameter]FileName - This is the name of the file that
was uploaded. In this example it will be "myFileFileName"
The three parameters are available for us, thanks to the Struts Interceptors. All
we have to do is to create three parameters with the correct names in our Action
65
Struts 2
class and automatically these variables are auto wired for us. So, in the above
example, we have three parameters and an action method that simply returns
"success" if everything goes fine otherwise it returns "error".
Configuration Files
Following are the Struts2 configuration properties that control file uploading
process:
SN
1
struts.multipart.parser
The library used to upload the multipart form.
struts.multipart.sa
store
javax.servlet.context.tempdir.
the
temporary
file.
By
default
is
In order to change any of these settings, you can use constant tag in your
applications struts.xml file, as I did to change the maximum size of a file to be
uploaded.
Let us have our struts.xml as follows:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE struts PUBLIC
"-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
"http://struts.apache.org/dtds/struts-2.0.dtd">
<struts>
<constant name="struts.devMode" value="true" />
<constant name="struts.multipart.maxSize" value="1000000" />
Struts 2
<result name="success">/success.jsp</result>
<result name="error">/error.jsp</result>
</action>
</package>
</struts>
Since, FileUpload interceptor is a part of the default Stack of interceptors, we do
not need to configure it explicity. But, you can add <interceptor-ref> tag inside
<action>.
The
fileUpload
interceptor
takes
two
parameters
(a)
maximumSize and (b) allowedTypes.
The maximumSize parameter sets the maximum file size allowed (the default is
approximately 2MB). The allowedTypes parameter is a comma-separated list of
accepted content (MIME) types as shown below:
<action name="upload" class="com.tutorialspoint.struts2.uploadFile">
<interceptor-ref name="basicStack">
<interceptor-ref name="fileUpload">
<param name="allowedTypes">image/jpeg,image/gif</param>
</interceptor-ref>
<result name="success">/success.jsp</result>
<result name="error">/error.jsp</result>
</action>
Following is the content of web.xml file:
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
id="WebApp_ID" version="3.0">
<display-name>Struts 2</display-name>
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
67
Struts 2
</welcome-file-list>
<filter>
<filter-name>struts2</filter-name>
<filter-class>
org.apache.struts2.dispatcher.FilterDispatcher
</filter-class>
</filter>
<filter-mapping>
<filter-name>struts2</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
</web-app>
Now Right click on the project name and click Export > WAR File to create a War
file. Then deploy this WAR in the Tomcat's webapps directory. Finally, start Tomcat
server and try to access URL http://localhost:8080/HelloWorldStruts2/upload.jsp.
This will produce the following screen:
68
Struts 2
Now select a file "Contacts.txt" using Browse button and click upload button which
will upload the file on your serve and you should see the next page. You can check
the uploaded file should be saved in C:\apache-tomcat-6.0.33\work.
Note that the FileUpload Interceptor deletes the uploaded file automatically so you
would have to save uploaded file programmatically at some location before it gets
deleted.
Error Messages
The fileUplaod interceptor uses several default error message keys:
S.No
1
struts.messages.error.file.too.large
Occurs when the uploaded file is too large as specified by maximumSize.
69
Struts 2
struts.messages.error.content.type.not.allowed
Occurs when the uploaded file does not match the expected content
types specified.
in WebContent/WEB-
70
Struts 2
This chapter will teach you how to access a database using Struts 2 in simple
steps. Struts is a MVC framework and not a database framework but it provides
excellent support for JPA/Hibernate integration. We shall look at the hibernate
integration in a later chapter, but in this chapter we shall use plain old JDBC to
access the database.
The first step in this chapter is to setup and prime our database. I am using MySQL
as my database for this example. I have MySQL installed on my machine and I
have created a new database called "struts_tutorial". I have created a table
called login and populated it with some values. Below is the script I used to create
and populate the table.
My MYSQL database has the default username "root" and "root123" password
CREATE TABLE `struts_tutorial`.`login` (
`user` VARCHAR( 10 ) NOT NULL ,
`password` VARCHAR( 10 ) NOT NULL ,
`name` VARCHAR( 20 ) NOT NULL ,
PRIMARY KEY ( `user` )
) ENGINE = InnoDB;
Create Action
The action class has the properties corresponding to the columns in the database
table. We have user, password and name as String attributes. In the action
method, we use the user and password parameters to check if the user exists, if
so, we display the user name in the next screen.
If the user has entered wrong information, we send them to the login screen again.
Following is the content of LoginAction.java file:
71
Struts 2
import com.opensymphony.xwork2.ActionSupport;
try {
String URL = "jdbc:mysql://localhost/struts_tutorial";
Class.forName("com.mysql.jdbc.Driver");
conn = DriverManager.getConnection(URL, "root", "root123");
String sql = "SELECT name FROM login WHERE";
sql+=" user = ? AND password = ?";
PreparedStatement ps = conn.prepareStatement(sql);
ps.setString(1, user);
ps.setString(2, password);
ResultSet rs = ps.executeQuery();
while (rs.next()) {
name = rs.getString(1);
ret = SUCCESS;
}
} catch (Exception e) {
72
Struts 2
ret = ERROR;
} finally {
if (conn != null) {
try {
conn.close();
} catch (Exception e) {
}
}
}
return ret;
}
Struts 2
this.name = name;
}
}
Create Views
Now let us create success.jsp file which will be invoked in case action returns
SUCCESS, but we will have another view file in case of an ERROR is returned from
the action.
<%@ page contentType="text/html; charset=UTF-8" %>
<%@ taglib prefix="s" uri="/struts-tags" %>
<html>
74
Struts 2
<head>
<title>Successful Login</title>
</head>
<body>
Hello World, <s:property value="name"/>
</body>
</html>
Following will be the view file error.jsp in case of an ERROR is returned from the
action.
<%@ page contentType="text/html; charset=UTF-8" %>
<%@ taglib prefix="s" uri="/struts-tags" %>
<html>
<head>
<title>Invalid User Name or Password</title>
</head>
<body>
Wrong user name or password provided.
</body>
</html>
Configuration Files
Finally, let us put everything together using the struts.xml configuration file as
follows:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE struts PUBLIC
"-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
"http://struts.apache.org/dtds/struts-2.0.dtd">
<struts>
<constant name="struts.devMode" value="true" />
<package name="helloworld" extends="struts-default">
75
Struts 2
<action name="loginaction"
class="com.tutorialspoint.struts2.LoginAction"
method="execute">
<result name="success">/success.jsp</result>
<result name="error">/error.jsp</result>
</action>
</package>
</struts>
Following is the content of web.xml file:
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
id="WebApp_ID" version="3.0">
<display-name>Struts 2</display-name>
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
<filter>
<filter-name>struts2</filter-name>
<filter-class>
org.apache.struts2.dispatcher.FilterDispatcher
</filter-class>
</filter>
<filter-mapping>
<filter-name>struts2</filter-name>
76
Struts 2
<url-pattern>/*</url-pattern>
</filter-mapping>
</web-app>
Now, right click on the project name and click Export > WAR File to create a War
file. Then deploy this WAR in the Tomcat's webapps directory. Finally, start Tomcat
server and try to access URL http://localhost:8080/HelloWorldStruts2/index.jsp.
This will produce the following screen:
Enter a wrong user name and password. You should see the next page.
77
Struts 2
Now enter scott as user name and navy as password. You should see the next
page.
78
Struts 2
This chapter explains how you can send an email using your Struts 2 application.
For this exercise, you need to download and install the mail.jar from JavaMail API
1.4.4 and place the mail.jar file in your WEB-INF\lib folder and then proceed to
follow the standard steps of creating action, view and configuration files.
Create Action
The next step is to create an Action method that takes care of sending the email.
Let us create a new class called Emailer.java with the following contents.
package com.tutorialspoint.struts2;
import java.util.Properties;
import javax.mail.Message;
import javax.mail.PasswordAuthentication;
import javax.mail.Session;
import javax.mail.Transport;
import javax.mail.internet.InternetAddress;
import javax.mail.internet.MimeMessage;
import com.opensymphony.xwork2.ActionSupport;
Struts 2
{
properties.put("mail.smtp.host", "smtp.gmail.com");
properties.put("mail.smtp.socketFactory.port", "465");
properties.put("mail.smtp.socketFactory.class",
"javax.net.ssl.SSLSocketFactory");
properties.put("mail.smtp.auth", "true");
properties.put("mail.smtp.port", "465");
}
Struts 2
e.printStackTrace();
}
return ret;
}
Struts 2
this.subject = subject;
}
From - The email address of the sender. As we are using Google's SMTP,
we need a valid gtalk id
Password - The password of the above account
To - Who to send the email to?
Subject - subject of the email
Body - The actual email message
We have not considered any validations on the above fields, validations will be
added in the next chapter. Let us now look at the execute() method. The execute()
method uses the javax Mail library to send an email using the supplied parameters.
If the mail is sent successfully, action returns SUCCESS, otherwise it returns
ERROR.
82
Struts 2
83
Struts 2
Create Views
We will use JSP file success.jsp which will be invoked in case action returns
SUCCESS, but we will have another view file in case of an ERROR is returned from
the action.
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<%@ taglib prefix="s" uri="/struts-tags"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Email Success</title>
</head>
<body>
Your email to <s:property value="to"/> was sent successfully.
</body>
</html>
Following will be the view file error.jsp in case of an ERROR is returned from the
action.
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<%@ taglib prefix="s" uri="/struts-tags"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Email Error</title>
</head>
<body>
There is a problem sending your email to <s:property value="to"/>.
</body>
</html>
84
Struts 2
Configuration Files
Now let us put everything together using the struts.xml configuration file as
follows:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE struts PUBLIC
"-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
"http://struts.apache.org/dtds/struts-2.0.dtd">
<struts>
<action name="emailer"
class="com.tutorialspoint.struts2.Emailer"
method="execute">
<result name="success">/success.jsp</result>
<result name="error">/error.jsp</result>
</action>
</package>
</struts>
Following is the content of web.xml file:
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
id="WebApp_ID" version="3.0">
85
Struts 2
<display-name>Struts 2</display-name>
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
<filter>
<filter-name>struts2</filter-name>
<filter-class>
org.apache.struts2.dispatcher.FilterDispatcher
</filter-class>
</filter>
<filter-mapping>
<filter-name>struts2</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
</web-app>
Now, right click on the project name and click Export > WAR File to create a War
file. Then deploy this WAR in the Tomcat's webapps directory. Finally, start Tomcat
server and try to access URL http://localhost:8080/HelloWorldStruts2/index.jsp.
This will produce the following screen:
86
Struts 2
Enter the required information and click Send Email button. If everything goes
fine, then you should see the following page.
87
STRUTS 2 - VALIDATIONS
Struts 2
In this chapter, we shall look deeper into Struts validation framework. At the
Struts core, we have the validation framework that assists the application to run
the rules to perform validation before the action method is executed.
Client side validation is usually achieved using Javascript. However, one should
not rely upon client side validation alone. The best practices suggest that the
validation should be introduced at all levels of your application framework. Now
let us look at two ways of adding validation to our Struts project.
Here, we will take an example of an Employee whose name and age should be
captured using a simple page, and we will put these two validations to make sure
that the user always enters a name and age which should be in a range between
28 and 65.
Let us start with the main JSP page of the example.
<body>
<s:form action="empinfo" method="post">
<s:textfield name="name" label="Name" size="20" />
<s:textfield name="age" label="Age" size="20" />
<s:submit name="submit" label="Submit" align="center" />
88
Struts 2
</s:form>
</body>
</html>
The index.jsp makes use of Struts tag, which we have not covered yet, but we will
study them in tags related chapters. But for now, just assume that the s:textfield
tag prints a input field, and the s:submit prints a submit button. We have used
label property for each tag which creates label for each tag.
Create Views
We will use JSP file success.jsp which will be invoked in case defined action returns
SUCCESS.
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<%@ taglib prefix="s" uri="/struts-tags"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Success</title>
</head>
<body>
Employee Information is captured successfully.
</body>
</html>
Create Action
So let us define a small action class Employee, and then add a method
called validate() as shown below in Employee.java file. Make sure that your
action class extends the ActionSupport class, otherwise your validate method
will not be executed.
package com.tutorialspoint.struts2;
import com.opensymphony.xwork2.ActionSupport;
89
Struts 2
90
Struts 2
}
As shown in the above example, the validation method checks whether the 'Name'
field has a value or not. If no value has been supplied, we add a field error for the
'Name' field with a custom error message. Secondly, we check if entered value for
'Age' field is in between 28 and 65 or not, if this condition does not meet we add
an error above the validated field.
Configuration Files
Finally, let us put everything together using the struts.xml configuration file as
follows:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE struts PUBLIC
"-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
"http://struts.apache.org/dtds/struts-2.0.dtd">
<struts>
<constant name="struts.devMode" value="true" />
<package name="helloworld" extends="struts-default">
<action name="empinfo"
class="com.tutorialspoint.struts2.Employee"
method="execute">
<result name="input">/index.jsp</result>
<result name="success">/success.jsp</result>
</action>
</package>
</struts>
Following is the content of web.xml file:
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://java.sun.com/xml/ns/javaee"
91
Struts 2
xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
id="WebApp_ID" version="3.0">
<display-name>Struts 2</display-name>
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
<filter>
<filter-name>struts2</filter-name>
<filter-class>
org.apache.struts2.dispatcher.FilterDispatcher
</filter-class>
</filter>
<filter-mapping>
<filter-name>struts2</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
</web-app>
Now, right click on the project name and click Export > WAR File to create a War
file. Then deploy this WAR in the Tomcat's webapps directory. Finally, start Tomcat
server and try to access URL http://localhost:8080/HelloWorldStruts2/index.jsp.
This will produce the following screen:
92
Struts 2
Now do not enter any required information, just click on Submit button. You will
see the following result:
Enter the required information but enter a wrong From field, let us say name as
"test" and age as 30, and finally click on Submit button. You will see the following
result:
93
Struts 2
Struts 2
validation, integer range validation, form validation field, expression validation,
regex validation, required validation, requiredstring validation, stringlength
validation and etc.
The xml file needs to be named '[action-class]'-validation.xml. So, in our case
we create a file called Employee-validation.xml with the following contents:
<!DOCTYPE validators PUBLIC
"-//OpenSymphony Group//XWork Validator 1.0.2//EN"
"http://www.opensymphony.com/xwork/xwork-validator-1.0.2.dtd">
<validators>
<field name="name">
<field-validator type="required">
<message>
The name is required.
</message>
</field-validator>
</field>
<field name="age">
<field-validator type="int">
<param name="min">29</param>
<param name="max">64</param>
<message>
Age must be in between 28 and 65
</message>
</field-validator>
</field>
</validators>
Above XML file would be kept in your CLASSPATH ideally along with class file. Let
us have our Employee action class as follows without having validate() method:
package com.tutorialspoint.struts2;
import com.opensymphony.xwork2.ActionSupport;
95
Struts 2
96
STRUTS 2 - LOCALIZATION
Struts 2
The UI Tags
Messages and Errors.
Within action classes.
Resource Bundles
Struts2 uses resource bundles to provide multiple language and locale options to
the users of the web application. You don't need to worry about writing pages in
different languages. All you have to do is to create a resource bundle for each
language that you want. The resource bundles will contain titles, messages, and
other text in the language of your user. Resource bundles are the file that contains
the key/value pairs for the default language of your application.
The simplest naming format for a resource file is:
bundlename_language_country.properties
Here, bundlename could be ActionClass, Interface, SuperClass, Model, Package,
Global resource properties. Next part language_country represents the country
locale for example, Spanish (Spain) locale is represented by es_ES, and English
(United States) locale is represented by en_US etc. where you can skip country
part which is optional.
When you reference a message element by its key, Struts framework searches for
a corresponding message bundle in the following order:
ActionClass.properties
Interface.properties
SuperClass.properties
model.properties
package.properties
struts.properties
global.properties
97
Struts 2
To develop your application in multiple languages, you should maintain multiple
property files corresponding to those languages/locale and define all the content
in terms of key/value pairs.
For example, if you are going to develop your application for US English (Default),
Spanish, and French, then you would have to create three properties files. Here I
will use global.properties file only, you can also make use of different property
files to segregate different type of messages.
Localization Example
Let us target to create index.jsp from the previous chapter in multiple languages.
Same file would be written as follows:
98
Struts 2
<body>
<h1><s:text name="global.heading"/></h1>
99
Struts 2
</body>
</html>
We will create success.jsp file which will be invoked in case defined action returns
SUCCESS.
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<%@ taglib prefix="s" uri="/struts-tags"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Success</title>
</head>
<body>
<s:property value="getText('global.success')" />
</body>
</html>
Here we would need to create the following two actions. (a) First action a to take
care of Locale and display same index.jsp file with different language (b) Another
action is to take care of submitting form itself. Both the actions will return
SUCCESS, but we will take different actions based on return values because our
purpose is different for both the actions:
Action to take care of Locale
package com.tutorialspoint.struts2;
import com.opensymphony.xwork2.ActionSupport;
100
Struts 2
global.properties
global.name = Name
global.age = Age
101
Struts 2
global.submit = Submit
global.heading = Select Locale
global.success = Successfully authenticated
global_fr.properties
global.name = Nom d'utilisateur
global.age = l'ge
global.submit = Soumettre des
global.heading = S lectionnez Local
global.success = Authentifi
avec succs
global_es.properties
global.name = Nombre de usuario
global.age = Edad
global.submit = Presentar
global.heading = seleccionar la configuracion regional
global.success = Autenticado correctamente
We will create our struts.xml with two actions as follows:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE struts PUBLIC
"-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
"http://struts.apache.org/dtds/struts-2.0.dtd">
<struts>
<constant name="struts.devMode" value="true" />
<constant name="struts.custom.i18n.resources" value="global" />
Struts 2
<result name="success">/success.jsp</result>
</action>
<action name="locale"
class="com.tutorialspoint.struts2.Locale"
method="execute">
<result name="success">/index.jsp</result>
</action>
</package>
</struts>
Following is the content of web.xml file:
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
id="WebApp_ID" version="3.0">
<display-name>Struts 2</display-name>
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
<filter>
<filter-name>struts2</filter-name>
<filter-class>
org.apache.struts2.dispatcher.FilterDispatcher
</filter-class>
</filter>
103
Struts 2
<filter-mapping>
<filter-name>struts2</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
</web-app>
Now, right click on the project name and click Export > WAR File to create a War
file. Then deploy this WAR in the Tomcat's webapps directory.
Finally,
start
Tomcat
server
and
try
to
access
URL
http://localhost:8080/HelloWorldStruts2/index.jsp. This will produce the following
screen:
Now select any of the languages, let us say we select Spanish, it would display
the following result:
104
Struts 2
You can try with French language as well. Finally, let us try to click Submit button
when we are in Spanish Locale, it would display the following screen:
Congratulations, now you have a multi-lingual webpage, you can launch your
website globally.
105
Struts 2
At times when you are using your own data type, it is necessary to add your own
converters to make Struts aware how to convert those values before displaying.
Consider the following POJO class Environment.java.
package com.tutorialspoint.struts2;
Environment(String name)
{
this.name = name;
}
public String getName() {
return name;
}
public void setName(String name) {
106
Struts 2
this.name = name;
}
}
This is a very simple class that has an attribute called name, so nothing special
about this class. Let us create another class that contains information about the
system -SystemDetails.java.
For the purpose of this exercise, I have hardcoded the Environment to
"Development" and the Operating System to "Windows XP SP3".
In a real-time project, you would get this information from the system
configuration.
Let us have the following action class:
package com.tutorialspoint.struts2;
import com.opensymphony.xwork2.ActionSupport;
Struts 2
}
}
Next, let us create a simple JSP file System.jsp to display the Environment and
the Operating System information.
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<%@ taglib prefix="s" uri="/struts-tags"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>System Details</title>
</head>
<body>
Environment: <s:property value="environment"/><br/>
Operating System:<s:property value="operatingSystem"/>
</body>
</html>
Let us wire the system.jsp and the SystemDetails.java class together
using struts.xml.
The SystemDetails class has a simple execute () method that returns the string
"SUCCESS".
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE struts PUBLIC
"-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
"http://struts.apache.org/dtds/struts-2.0.dtd">
<struts>
<constant name="struts.devMode" value="true" />
<package name="helloworld" extends="struts-default">
<action name="system"
class="com.tutorialspoint.struts2.SystemDetails"
108
Struts 2
method="execute">
<result name="success">/System.jsp</result>
</action>
</package>
</struts>
Right click on the project name and click Export > WAR File to create a
War file.
Then deploy this WAR in the Tomcat's webapps directory.
Finally,
start
Tomcat
server
and
try
to
access
URL
http://localhost:8080/HelloWorldStruts2/system.action. This will produce
the following screen:
What is wrong with the above output? Struts knows how to display and convert
the string "Windows XP SP3" and other built-in data types, but it does not know
what to do with the property of Environment type. It is simply called
toString() method on the class.
To
resolve
this
problem,
let
us
now
simple TypeConverter for the Environment class.
create
and
register
import java.util.Map;
109
Struts 2
import org.apache.struts2.util.StrutsTypeConverter;
@Override
public String convertToString(Map context, Object value) {
Environment env
= (Environment) value;
Struts 2
com.tutorialspoint.struts2.Environment = \
com.tutorialspoint.struts2.EnvironmentConverter
This simply registers the converter globally, so that Struts can automatically do
the conversion every time when it encounters an object of the type Environment.
Now, if you re-compiling and re-running the program, then you will get a better
output as follows:
Obviously, now the result will be better which means our Struts convertor is
working fine.
This is how you can create multiple convertors and register them to use as per
your requirements.
111
Struts 2
Before starting actual tutorial for this chapter, let us look into few definition as
given byhttp://struts.apache.org:
Term
Description
TAG
TEMPLATE
THEME
I would also suggest going through the Struts2 Localization chapter because we will
take same example once again to perform our excercise.
When you use a Struts 2 tag such as <s:submit...>, <s:textfield...> etc in your
web page, the Struts 2 framework generates HTML code with a preconfigured style
and layout. Struts 2 comes with three built-in themes:
Theme
Description
SIMPLE theme
XHTML theme
CSS_XHTML theme
This theme provides all the basics that the simple theme
provides and adds several features like standard twocolumn CSS-based layout, using <div> for the HTML
112
Struts 2
As mentioned above, if you dont specify a theme, then Struts 2 will use the xhtml
theme by default. For example, this Struts 2 select tag:
<s:textfield name="name" label="Name" />
Generates the following HTML markup:
<tr>
<td class="tdLabel">
<label for="empinfo_name" class="label">Name:</label>
</td><td>
<input type="text" name="name" value="" id="empinfo_name"/>
</td>
</tr>
Here empinfo is the action name defined in struts.xml file.
Selecting Themes
You can specify the theme on as per Struts 2, tag basis or you can use one of the
following methods to specify what theme Struts 2 should use:
The
The
The
The
The
The
The
Following is the syntax to specify them at tag level if you are willing to use different
themes for different tags:
<s:textfield name="name" label="Name" theme="xhtml"/>
Because it is not very much practical to use themes on per tag basis, so simply
we can specify the rule in struts.properties file using the following tags:
# Standard UI theme
113
Struts 2
struts.ui.theme=xhtml
# Directory where theme template residesstruts.ui.templateDir=template
# Sets the default template type. Either ftl, vm, or jsp
struts.ui.templateSuffix=ftl
Following is the result we picked up from localization chapter where we used the
default
theme
with
a
setting struts.ui.theme=xhtml in strutsdefault.properties file which comes by default in struts2-core.xy.z.jar file.
Struts 2
Struts 2
You can see a border around the form component which is a result of the change
we did in out theme after copying it from xhtml theme. If you put little effort in
learning FreeMarker, then you will be able to create or modify your themes very
easily.
116
Struts 2
I hope that now you have a basic understanding on Sturts 2 themes and
templates, isn't it?
117
Struts 2
Struts provides an easier way to handle uncaught exception and redirect users to
a dedicated error page. You can easily configure Struts to have different error
pages for different exceptions.
Struts makes the exception handling easy by the use of the "exception"
interceptor. The "exception" interceptor is included as part of the default stack, so
you don't have to do anything extra to configure it. It is available out-of-the-box
ready for you to use.
Let us see a simple Hello World example with some
in
HelloWorldAction.java
file.
Here,
we
deliberately
a NullPointer Exception in our HelloWorldAction action code.
modification
introduced
package com.tutorialspoint.struts2;
import com.opensymphony.xwork2.ActionSupport;
Struts 2
Let us keep the content of HelloWorld.jsp as follows:
<%@ page contentType="text/html; charset=UTF-8" %>
<%@ taglib prefix="s" uri="/struts-tags" %>
<html>
<head>
<title>Hello World</title>
</head>
<body>
Hello World, <s:property value="name"/>
</body>
</html>
Following is the content of index.jsp:
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<%@ taglib prefix="s" uri="/struts-tags"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Hello World</title>
</head>
<body>
<h1>Hello World From Struts2</h1>
<form action="hello">
<label for="name">Please enter your name</label><br/>
<input type="text" name="name"/>
<input type="submit" value="Say Hello"/>
</form>
</body>
</html>
119
Struts 2
Your struts.xml should look like:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE struts PUBLIC
"-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
"http://struts.apache.org/dtds/struts-2.0.dtd">
<struts>
<constant name="struts.devMode" value="true" />
<package name="helloworld" extends="struts-default">
<action name="hello"
class="com.tutorialspoint.struts2.HelloWorldAction"
method="execute">
<result name="success">/HelloWorld.jsp</result>
</action>
</package>
</struts>
Now right click on the project name and click Export > WAR File to create a War
file. Then deploy this WAR in the Tomcat's webapps directory.
Finally,
start
Tomcat
server
and
try
to
access
URL
http://localhost:8080/HelloWorldStruts2/index.jsp. This will produce the following
screen:
120
Struts 2
Enter a value "Struts2" and submit the page. You should see the following page:
As shown in the above example, the default exception interceptor does a great
job of handling the exception.
121
Struts 2
Let us now create a dedicated error page for our Exception. Create a file
called Error.jsp with the following contents:
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<%@ taglib prefix="s" uri="/struts-tags"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title></title>
</head>
<body>
This is my custom error page
</body>
</html>
Let us now configure Struts to use this this error page in case of an exception. Let
us modify the struts.xml as follows:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE struts PUBLIC
"-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
"http://struts.apache.org/dtds/struts-2.0.dtd">
<struts>
<constant name="struts.devMode" value="true" />
<package name="helloworld" extends="struts-default">
<action name="hello"
class="com.tutorialspoint.struts2.HelloWorldAction"
method="execute">
<exception-mapping exception="java.lang.NullPointerException"
result="error" />
<result name="success">/HelloWorld.jsp</result>
<result name="error">/Error.jsp</result>
</action>
122
Struts 2
</package>
</struts>
As shown in the example above, now we have configured Struts to use the
dedicated Error.jsp for the NullPointerException. If you rerun the program now,
you shall now see the following output:
Struts 2
<global-exception-mappings>
<exception-mapping exception="java.lang.NullPointerException"
result="error" />
</global-exception-mappings>
<action name="hello"
class="com.tutorialspoint.struts2.HelloWorldAction"
method="execute">
<result name="success">/HelloWorld.jsp</result>
<result name="error">/Error.jsp</result>
</action>
</package>
</struts>
124
STRUTS 2 ANNOTATIONS
Struts 2
struts2-convention-plugin-x.y.z.jar
asm-x.y.jar
antlr-x.y.z.jar
commons-fileupload-x.y.z.jar
commons-io-x.y.z.jar
commons-lang-x.y.jar
commons-logging-x.y.z.jar
commons-logging-api-x.y.jar
freemarker-x.y.z.jar
javassist-.xy.z.GA
ognl-x.y.z.jar
struts2-core-x.y.z.jar
xwork-core.x.y.z.jar
Now, let us see how you can do away with the configuration available in
the struts.xml file and replace it with annotations.
To explain the concept of Annotation in Struts2, we would have to reconsider our
validation example explained in Struts2 Validations chapter.
Here, we shall take an example of an Employee whose name, age would be captured using
a simple page, and we will put two validations to make sure that SER always enters
a name and age should be in between 28 and 65.
Let us start with the main JSP page of the example.
Struts 2
<body>
</body>
</html>
The index.jsp makes use of Struts tag, which we have not covered yet but we will
study them in tags related chapters. But for now, just assume that the s:textfield
tag prints a input field, and the s:submit prints a submit button. We have used
label property for each tag which creates label for each tag.
Create Views
We will use JSP file success.jsp which will be invoked in case the defined action
returns SUCCESS.
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<%@ taglib prefix="s" uri="/struts-tags"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
126
Struts 2
<title>Success</title>
</head>
<body>
Employee Information is captured successfully.
</body>
</html>
Create Action
This is the place where annotation is used. Let us re-define action
class Employee with annotation, and then add a method called validate () as
shown below in Employee.java file. Make sure that your action class extends
the ActionSupport class, otherwise your validate method will not be executed.
package com.tutorialspoint.struts2;
import com.opensymphony.xwork2.ActionSupport;
import org.apache.struts2.convention.annotation.Action;
import org.apache.struts2.convention.annotation.Result;
import org.apache.struts2.convention.annotation.Results;
import com.opensymphony.xwork2.validator.annotations.*;
@Results({
@Result(name="success", location="/success.jsp"),
@Result(name="input", location="/index.jsp")
})
public class Employee extends ActionSupport{
private String name;
private int age;
@Action(value="/empinfo")
public String execute()
{
return SUCCESS;
}
127
Struts 2
Under the results annotation, we have two result annotations. The result
annotations have the name that correspond to the outcome of the execute
method. They also contain a location as to which view should be served
corresponding to return value from execute().
The next annotation is the Action annotation. This is used to decorate the
execute() method. The Action method also takes in a value which is the URL
on which the action is invoked.
128
Struts 2
Configuration Files
We really do not need struts.xml configuration file, so let us remove this file and
let us check the content of web.xml file:
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
id="WebApp_ID" version="3.0">
<display-name>Struts 2</display-name>
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
<filter>
<filter-name>struts2</filter-name>
<filter-class>
org.apache.struts2.dispatcher.FilterDispatcher
</filter-class>
<init-param>
<param-name>struts.devMode</param-name>
<param-value>true</param-value>
</init-param>
</filter>
<filter-mapping>
<filter-name>struts2</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
</web-app>
129
Struts 2
Now, right click on the project name and click Export > WAR File to create a War
file. Then deploy this WAR in the Tomcat's webapps directory. Finally, start Tomcat
server and try to access URL http://localhost:8080/HelloWorldStruts2/index.jsp.
This will produce the following screen:
Now do not enter any required information, just click on Submit button. You will
see the following result:
Enter the required information but enter a wrong From field, let us say name as
"test" and age as 30, and finally click on Submit button. You will see the following
result:
130
Struts 2
131
Struts 2
Struts 2 Tags
132
Struts 2
The Struts 2 tags has a set of tags that makes it easy to control the flow of page
execution.
Following is the list of important Struts 2 Control Tags:
Struts 2
Create views
Let us have index.jsp file as follows:
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<%@ taglib prefix="s" uri="/struts-tags"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Hello World</title>
</head>
<body>
<h1>Hello World From Struts2</h1>
<form action="hello">
<label for="name">Please pick a name</label><br/>
<select name="name">
<option name="Mike">Mike</option>
<option name="Jason">Jason</option>
<option name="Mark">Mark</option>
</select>
<input type="submit" value="Say Hello"/>
</form>
134
Struts 2
</body>
</html>
Next let us have HelloWorld.jsp to
else and elseif tags:
demonstrate
the
use
of
the if,
Configuration Files
Your struts.xml should look like:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE struts PUBLIC
135
Struts 2
<action name="hello"
class="com.tutorialspoint.struts2.HelloWorldAction"
method="execute">
<result name="success">/HelloWorld.jsp</result>
</action>
</package>
</struts>
Your web.xml should look like:
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
id="WebApp_ID" version="3.0">
<display-name>Struts 2</display-name>
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
<filter>
<filter-name>struts2</filter-name>
<filter-class>
org.apache.struts2.dispatcher.FilterDispatcher
</filter-class>
136
Struts 2
</filter>
<filter-mapping>
<filter-name>struts2</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
</web-app>
Right click on the project name and click Export > WAR File to create a War file.
Then deploy this WAR in the Tomcat's webapps directory. Finally, start Tomcat
server and try to access URL http://localhost:8080/HelloWorldStruts2/index.jsp.
This will produce the following screen:
Now select "Mark" and submit the page. You should see the next page.
137
Struts 2
import java.util.ArrayList;
import java.util.List;
138
Struts 2
import org.apache.struts2.util.SubsetIteratorFilter.Decider;
public Employee(){}
public Employee(String name,String department)
{
this.name = name;
this.department = department;
}
private List employees;
private List contractors;
Struts 2
return employee.getDepartment().equals("Recruitment");
}
};
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getDepartment() {
return department;
}
public void setDepartment(String department) {
this.department = department;
}
public List getEmployees() {
return employees;
}
public void setEmployees(List employees) {
this.employees = employees;
}
public List getContractors() {
return contractors;
}
public void setContractors(List contractors) {
this.contractors = contractors;
}
}
The Employee class has two attributes - name and department, we also have
two lists of employees - the permanent employees and the contractors. We have
a method called getRecruitmentDecider that returns a Decider object.
The Decider implementation returns true if the employee
the recruitment department, and it returns false otherwise.
works
for
140
Struts 2
Next, let us create a DepartmentComparator to compare Employee objects:
package com.tutorialspoint.struts2;
import java.util.Comparator;
@Override
public int compare(Object arg0, Object arg1) {
return 0;
}
}
As shown in the above example, the department comparator compares the
employees based on the department in alphabetical order.
Create Views
Create a file called employee.jsp with the following contents:
<%@ page contentType="text/html; charset=UTF-8" %>
<%@ taglib prefix="s" uri="/struts-tags" %>
<html>
<head>
<title>Employees</title>
</head>
<body>
<b>Example of Iterator Tag</b><br/>
<s:iterator value="employees">
<s:property value="name"/> ,
<s:property value="department"/><br/>
</s:iterator>
141
Struts 2
<br/><br/>
<b>Employees sorted by Department</b><br/>
<s:bean name="com.tutorialspoint.struts2.DepartmentComparator"
var="deptComparator" />
142
Struts 2
Iterator Tag
We are using the iterator tag to go through the employees list. We supply the
"employees" property as the source to the iterator tag. In the body of the iterator
tag, we now have access to the Employee object in the employees list. We print
the name of the employee followed by their department.
Sort Tag
First of all we declared the DepartmentComparator as a bean. We gave this
bean a name deptComparator. Then we used the sort tag and specify the
"employees" list as the source and the "deptComparator" as the comparator to
use. Then, as per the previous example, we iterate the list and print the
employees. As you can see from the output, this prints the list of employees sorted
by department
Subset Tag
The subset tag is used to get a sub set of the list or array. We have two flavors
of subset tag. In the first example, we use the recrutimentDecider to get the list
of employees who work for the recruitment department (please see the
getRecruitmentDecider() method in Employee.java).
In the second example, we are not using any deciders but instead we are after
elements 2 and 3 in the list. The subset tag takes in two parameters "count" and
"start". "start" determines the starting point of the subset and the "count"
determines the length of the subset.
Configuration Files
Your struts.xml should look like:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE struts PUBLIC
"-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
"http://struts.apache.org/dtds/struts-2.0.dtd">
<struts>
<constant name="struts.devMode" value="true" />
Struts 2
class="com.tutorialspoint.struts2.Employee"
method="execute">
<result name="success">/employee.jsp</result>
</action>
</package>
</struts>
Your web.xml should look like:
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
id="WebApp_ID" version="3.0">
<display-name>Struts 2</display-name>
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
<filter>
<filter-name>struts2</filter-name>
<filter-class>
org.apache.struts2.dispatcher.FilterDispatcher
</filter-class>
</filter>
<filter-mapping>
<filter-name>struts2</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
</web-app>
144
Struts 2
Right click on the project name and click Export > WAR File to create a War file.
Then deploy this WAR in the Tomcat's webapps directory. Finally, start Tomcat
server
and
try
to
access
URL
http://localhost:8080/HelloWorldStruts2/employee.action. This will produce the
following screen:
Struts 2
<s:iterator value="%{#myMergedIterator}">
<s:property />
</s:iterator>
import java.util.ArrayList;
import java.util.List;
import org.apache.struts2.util.SubsetIteratorFilter.Decider;
public Employee(){}
public Employee(String name,String department)
{
this.name = name;
this.department = department;
}
private List employees;
private List contractors;
Struts 2
employees.add(new Employee("George","Recruitment"));
employees.add(new Employee("Danielle","Accounts"));
employees.add(new Employee("Melissa","Recruitment"));
employees.add(new Employee("Rose","Accounts"));
Struts 2
}
public void setEmployees(List employees) {
this.employees = employees;
}
public List getContractors() {
return contractors;
}
public void setContractors(List contractors) {
this.contractors = contractors;
}
}
The Employee class has two attributes - name and department, we also have
two lists of employees - the permanent employees and the contractors. We have
a method called getRecruitmentDecider that returns a Decider object. The
Decider
implementation
returns true if
the
employee
works
for
the recruitment department, and it returns false otherwise.
Next, let us create a DepartmentComparator to compare Employee objects:
package com.tutorialspoint.struts2;
import java.util.Comparator;
@Override
public int compare(Object arg0, Object arg1) {
return 0;
}
}
148
Struts 2
As shown in the above example, the department comparator compares the
employees based on the department in alphabetical order.
Create Views
Create a file called employee.jsp with the following contents:
<%@ page contentType="text/html; charset=UTF-8"%>
<%@ taglib prefix="s" uri="/struts-tags"%>
<html>
<head>
<title>Employees</title>
</head>
<body>
<b>Employees and Contractors Merged together</b>
<br />
<s:merge id="allemployees">
<s:param value="employees" />
<s:param value="contractors" />
</s:merge>
<s:iterator value="allemployees">
<s:property value="name"/>,
<s:property value="department"/><br/>
</s:iterator>
</body>
</html>
The merge tag takes two or more lists as parameters. We need to give the merge
an id so that we can reuse it later. In this example, we supply employees and
contractors as parameters to the merge tag. We then use the "allemployees" id to
iterate through the merged list and print the employee details.
Configuration Files
Your struts.xml should look like:
<?xml version="1.0" encoding="UTF-8"?>
149
Struts 2
<struts>
<constant name="struts.devMode" value="true" />
<package name="helloworld" extends="struts-default">
<action name="employee"
class="com.tutorialspoint.struts2.Employee"
method="execute">
<result name="success">/employee.jsp</result>
</action>
</package>
</struts>
Your web.xml should look like:
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
id="WebApp_ID" version="3.0">
<display-name>Struts 2</display-name>
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
<filter>
<filter-name>struts2</filter-name>
<filter-class>
org.apache.struts2.dispatcher.FilterDispatcher
150
Struts 2
</filter-class>
</filter>
<filter-mapping>
<filter-name>struts2</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
</web-app>
Right click on the project name and click Export > WAR File to create a War file.
Then deploy this WAR in the Tomcat's webapps directory. Finally, start Tomcat
server
and
try
to
access
URL
http://localhost:8080/HelloWorldStruts2/employee.action. This will produce the
following screen:
Struts 2
<s:property />
</s:iterator>
import java.util.ArrayList;
import java.util.List;
import org.apache.struts2.util.SubsetIteratorFilter.Decider;
public Employee(){}
public Employee(String name,String department)
{
this.name = name;
this.department = department;
}
private List employees;
private List contractors;
Struts 2
employees.add(new Employee("Melissa","Recruitment"));
employees.add(new Employee("Rose","Accounts"));
Struts 2
this.employees = employees;
}
public List getContractors() {
return contractors;
}
public void setContractors(List contractors) {
this.contractors = contractors;
}
}
The Employee class has two attributes - name and department, we also have
two lists of employees - the permanent employees and the contractors. We have
a method called getRecruitmentDecider that returns a Decider object. The
Decider
implementation
returns true if
the
employee
works
for
the recruitment department, and it returns false otherwise.
Next, let us create a DepartmentComparator to compare Employee objects:
package com.tutorialspoint.struts2;
import java.util.Comparator;
@Override
public int compare(Object arg0, Object arg1) {
return 0;
}
}
As shown in the above example, the department manager compares the
employees based on the department in alphabetical order.
154
Struts 2
Create Views
Creates a file called employee.jsp with the following contents:
<%@ page contentType="text/html; charset=UTF-8"%>
<%@ taglib prefix="s" uri="/struts-tags"%>
<html>
<head>
<title>Employees</title>
</head>
<body>
<b>Employees and Contractors Merged together</b>
<br />
<s:append
id="allemployees">
Configuration Files
Your struts.xml should look like:
Struts 2
<struts>
<constant name="struts.devMode" value="true" />
</struts>
Your web.xml should look like:
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
id="WebApp_ID" version="3.0">
<display-name>Struts 2</display-name>
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
<filter>
<filter-name>struts2</filter-name>
<filter-class>
org.apache.struts2.dispatcher.FilterDispatcher
156
Struts 2
</filter-class>
</filter>
<filter-mapping>
<filter-name>struts2</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
</web-app>
Right click on the project name and click Export > WAR File to create a War file.
Then deploy this WAR in the Tomcat's webapps directory. Finally, start Tomcat
server
and
try
to
access
URL
http://localhost:8080/HelloWorldStruts2/employee.action. This will produce the
following screen:
Struts 2
</s:generator>
Create Views
Let us have HelloWorld.jsp to demonstrate the use of the generator tag:
<%@ page contentType="text/html; charset=UTF-8" %>
<%@ taglib prefix="s" uri="/struts-tags" %>
<html>
<head>
<title>Hello World</title>
158
Struts 2
</head>
<body>
<s:generator val="%{'Violet,Indigo,Blue,
Green,Yellow,Orange,Red '}" count="7"
separator=",">
<s:iterator>
<s:property /><br/>
</s:iterator>
</s:generator>
</body>
</html>
Here we are creating a generator tag and we ask it to parse the string that
contains comma separated list of colors that form a rainbow. We tell the generator
tag that the separator is "," and we want all seven values in the list.
If we are only interested in the first three values, then we would set the count to
3. In the body of the generator tag, we used the iterator to go through the values
created by the generator tag and we print the value of the property.
Configuration Files
Your struts.xml should look like:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE struts PUBLIC
"-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
"http://struts.apache.org/dtds/struts-2.0.dtd">
<struts>
<constant name="struts.devMode" value="true" />
<package name="helloworld" extends="struts-default">
<action name="hello"
159
Struts 2
class="com.tutorialspoint.struts2.HelloWorldAction"
method="execute">
<result name="success">/HelloWorld.jsp</result>
</action>
</package>
</struts>
Your web.xml should look like:
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
id="WebApp_ID" version="3.0">
<display-name>Struts 2</display-name>
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
<filter>
<filter-name>struts2</filter-name>
<filter-class>
org.apache.struts2.dispatcher.FilterDispatcher
</filter-class>
</filter>
<filter-mapping>
<filter-name>struts2</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
</web-app>
160
Struts 2
Right click on the project name and click Export > WAR File to create a War file.
Then deploy this WAR in the Tomcat's webapps directory. Finally, start Tomcat
server
and
try
to
access
URL
http://localhost:8080/HelloWorldStruts2/hello.action. This will produce the
following screen:
161
Struts 2
The Struts 2 data tags are primarily used to manipulate the data displayed on a
page. Listed below are the important data tags: <Start here>
in action class</div>
<br />
<s:action name="actionTagAction!specialMethod" executeResult="true" />
Struts 2
Create Views
Let us have HelloWorld.jsp to demonstrate the use of the generator tag:
<%@ page contentType="text/html; charset=UTF-8" %>
<%@ taglib prefix="s" uri="/struts-tags" %>
<html>
<head>
<title>Hello World</title>
</head>
<body>
<s:generator val="%{'Violet,Indigo,Blue,
Green,Yellow,Orange,Red '}" count="7"
separator=",">
<s:iterator>
<s:property /><br/>
</s:iterator>
</s:generator>
163
Struts 2
</body>
</html>
Next let us have employees.jsp with the following content:
<%@ page contentType="text/html; charset=UTF-8"%>
<%@ taglib prefix="s" uri="/struts-tags"%>
<html>
<head>
<title>Employees</title>
</head>
<body>
<s:action name="hello" executeResult="true">
Output from Hello:
<br />
</s:action>
</body>
</html>
Configuration Files
Your struts.xml should look like:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE struts PUBLIC
"-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
"http://struts.apache.org/dtds/struts-2.0.dtd">
<struts>
<constant name="struts.devMode" value="true" />
<package name="helloworld" extends="struts-default">
<action name="hello"
class="com.tutorialspoint.struts2.HelloWorldAction"
method="execute">
<result name="success">/HelloWorld.jsp</result>
</action>
<action name="employee"
164
Struts 2
class="com.tutorialspoint.struts2.Employee"
method="execute">
<result name="success">/employee.jsp</result>
</action>
</package>
</struts>
Your web.xml should look like:
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
id="WebApp_ID" version="3.0">
<display-name>Struts 2</display-name>
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
<filter>
<filter-name>struts2</filter-name>
<filter-class>
org.apache.struts2.dispatcher.FilterDispatcher
</filter-class>
</filter>
<filter-mapping>
<filter-name>struts2</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
</web-app>
165
Struts 2
Right click on the project name and click Export > WAR File to create a War file.
Then deploy this WAR in the Tomcat's webapps directory.
Finally,
start
Tomcat
server
and
try
to
access
URL
http://localhost:8080/HelloWorldStruts2/employee.action. This will produce the
following screen:
As you can see in this example, we have specified the value of executeResult to
"true". Therefore the outcome of the hello.action is rendered directly in the page.
The HelloWorld.jsp prints the colors of the rainbow - which is now rendered within
employee.jsp
Now, let us modify the HelloWorldAction.java slightly:
package com.tutorialspoint.struts2;
import java.util.ArrayList;
import java.util.List;
import org.apache.struts2.ServletActionContext;
Struts 2
{
List names = new ArrayList();
names.add("Robert");
names.add("Page");
names.add("Kate");
ServletActionContext.getRequest().setAttribute("names", names);
return "success";
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
}
Finally, modify the employee.jsp as follows:
<%@ page contentType="text/html; charset=UTF-8"%>
<%@ taglib prefix="s" uri="/struts-tags"%>
<html>
<head>
<title>Employees</title>
</head>
<body>
<br />
</s:action>
<s:iterator value="#attr.names">
<s:property /><br />
</s:iterator>
</body>
</html>
167
Struts 2
Again, right click on the project name and click Export > WAR File to create a
War file. Then deploy this WAR in the Tomcat's webapps directory.
Finally,
start
Tomcat
server
and
try
to
access
URL
http://localhost:8080/HelloWorldStruts2/employee.action. This will produce the
following screen:
Struts 2
</s:include>
Create Views
Let us have HelloWorld.jsp with the following content:
169
Struts 2
<s:generator val="%{'Violet,Indigo,Blue,
Green,Yellow,Orange,Red '}" count="7"
separator=",">
<s:iterator>
<s:property /><br/>
</s:iterator>
</s:generator>
</body>
</html>
Next let us have employees.jsp with the following content:
<%@ page contentType="text/html; charset=UTF-8"%>
<%@ taglib prefix="s" uri="/struts-tags"%>
<html>
<head>
<title>Employees</title>
</head>
<body>
<p>An example of the include tag: </p>
<s:include value="HelloWorld.jsp"/>
</body>
170
Struts 2
</html>
Configuration Files
Your struts.xml should look like:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE struts PUBLIC
"-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
"http://struts.apache.org/dtds/struts-2.0.dtd">
<struts>
<constant name="struts.devMode" value="true" />
<package name="helloworld" extends="struts-default">
<action name="hello"
class="com.tutorialspoint.struts2.HelloWorldAction"
method="execute">
<result name="success">/HelloWorld.jsp</result>
</action>
<action name="employee"
class="com.tutorialspoint.struts2.Employee"
method="execute">
<result name="success">/employee.jsp</result>
</action>
</package>
</struts>
Your web.xml should look like:
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
171
Struts 2
id="WebApp_ID" version="3.0">
<display-name>Struts 2</display-name>
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
<filter>
<filter-name>struts2</filter-name>
<filter-class>
org.apache.struts2.dispatcher.FilterDispatcher
</filter-class>
</filter>
<filter-mapping>
<filter-name>struts2</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
</web-app>
Right click on the project name and click Export > WAR File to create a War file.
Then deploy this WAR in the Tomcat's webapps directory.
Finally,
start
Tomcat
server
and
try
to
access
URL
http://localhost:8080/HelloWorldStruts2/employee.action. This will produce the
following screen:
172
Struts 2
Struts 2
methods. For the purpose of this exercise, let us use the following Counter class
that comes in the struts util package. The Counter class is a bean that can be used
to keep track of a counter.
Let us keep all the files unchanged and modify HelloWorld.jsp file.
Create Views
Let us have HelloWorld.jsp with the following content:
<%@ page contentType="text/html; charset=UTF-8" %>
<%@ taglib prefix="s" uri="/struts-tags" %>
<html>
<head>
<title>Hello World</title>
</head>
<body>
174
Struts 2
</body>
</html>
Next let us have employees.jsp with the following content:
<%@ page contentType="text/html; charset=UTF-8"%>
<%@ taglib prefix="s" uri="/struts-tags"%>
<html>
<head>
<title>Employees</title>
</head>
<body>
<p>An example of the include tag: </p>
<s:include value="HelloWorld.jsp"/>
</body>
</html>
Configuration Files
Your struts.xml should look like:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE struts PUBLIC
"-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
175
Struts 2
"http://struts.apache.org/dtds/struts-2.0.dtd">
<struts>
<constant name="struts.devMode" value="true" />
<package name="helloworld" extends="struts-default">
<action name="hello"
class="com.tutorialspoint.struts2.HelloWorldAction"
method="execute">
<result name="success">/HelloWorld.jsp</result>
</action>
<action name="employee"
class="com.tutorialspoint.struts2.Employee"
method="execute">
<result name="success">/employee.jsp</result>
</action>
</package>
</struts>
Your web.xml should look like:
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
id="WebApp_ID" version="3.0">
<display-name>Struts 2</display-name>
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
<filter>
176
Struts 2
<filter-name>struts2</filter-name>
<filter-class>
org.apache.struts2.dispatcher.FilterDispatcher
</filter-class>
</filter>
<filter-mapping>
<filter-name>struts2</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
</web-app>
Right click on the project name and click Export > WAR File to create a War file.
Then deploy this WAR in the Tomcat's webapps directory.
Finally,
start
Tomcat
server
and
try
to
access
URL
http://localhost:8080/HelloWorldStruts2/hello.action. This will produce the
following screen:
177
Struts 2
import java.util.*;
Struts 2
Create Views
Let us have HelloWorld.jsp with the following content:
<%@ page contentType="text/html; charset=UTF-8" %>
<%@ taglib prefix="s" uri="/struts-tags" %>
<html>
<head>
<title>Hello World</title>
</head>
<body>
<h2>Current Date</h2>
<h3>Day/Month/Year Format</h3>
<s:date name="currentDate" format="dd/MM/yyyy" />
<h3>Month/Day/Year Format</h3>
<s:date name="currentDate" format="MM/dd/yyyy" />
</body>
</html>
Configuration Files
Your struts.xml should look like:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE struts PUBLIC
"-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
"http://struts.apache.org/dtds/struts-2.0.dtd">
<struts>
<constant name="struts.devMode" value="true" />
<package name="helloworld" extends="struts-default">
179
Struts 2
<action name="hello"
class="com.tutorialspoint.struts2.HelloWorldAction"
method="execute">
<result name="success">/HelloWorld.jsp</result>
</action>
</package>
</struts>
Your web.xml should look like:
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
id="WebApp_ID" version="3.0">
<display-name>Struts 2</display-name>
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
<filter>
<filter-name>struts2</filter-name>
<filter-class>
org.apache.struts2.dispatcher.FilterDispatcher
</filter-class>
</filter>
<filter-mapping>
<filter-name>struts2</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
180
Struts 2
</web-app>
Right click on the project name and click Export > WAR File to create a War file.
Then deploy this WAR in the Tomcat's webapps directory.
Finally,
start
Tomcat
server
and
try
to
access
URL
http://localhost:8080/HelloWorldStruts2/hello.action. This will produce the
following screen:
<pre>
<ui:component>
<ui:param name="key"
value="[0]"/>
<ui:param name="value"
value="[1]"/>
181
Struts 2
Create Views
Let us have HelloWorld.jsp with the following content:
<%@ page contentType="text/html; charset=UTF-8" %>
<%@ taglib prefix="s" uri="/struts-tags" %>
<html>
<head>
<title>Hello World</title>
</head>
<body>
Struts 2
</body>
</html>
Next let us have employees.jsp with the following content:
<%@ page contentType="text/html; charset=UTF-8"%>
<%@ taglib prefix="s" uri="/struts-tags"%>
<html>
<head>
<title>Employees</title>
</head>
<body>
<p>An example of the include tag: </p>
<s:include value="HelloWorld.jsp"/>
</body>
</html>
Configuration Files
Your struts.xml should look like:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE struts PUBLIC
"-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
"http://struts.apache.org/dtds/struts-2.0.dtd">
<struts>
<constant name="struts.devMode" value="true" />
183
Struts 2
<action name="hello"
class="com.tutorialspoint.struts2.HelloWorldAction"
method="execute">
<result name="success">/HelloWorld.jsp</result>
</action>
<action name="employee"
class="com.tutorialspoint.struts2.Employee"
method="execute">
<result name="success">/employee.jsp</result>
</action>
</package>
</struts>
Your web.xml should look like:
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
id="WebApp_ID" version="3.0">
<display-name>Struts 2</display-name>
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
<filter>
<filter-name>struts2</filter-name>
<filter-class>
org.apache.struts2.dispatcher.FilterDispatcher
184
Struts 2
</filter-class>
</filter>
<filter-mapping>
<filter-name>struts2</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
</web-app>
Right click on the project name and click Export > WAR File to create a War file.
Then deploy this WAR in the Tomcat's webapps directory.
Finally,
start
Tomcat
server
and
try
to
access
URL
http://localhost:8080/HelloWorldStruts2/hello.action. This will produce the
following screen:
Struts 2
Environment(String name)
{
this.name = name;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
}
Let us have following action class:
package com.tutorialspoint.struts2;
186
Struts 2
import com.opensymphony.xwork2.ActionSupport;
Create Views
Let us have System.jsp with the following content:
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<%@ taglib prefix="s" uri="/struts-tags"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
187
Struts 2
<head>
<title>System Details</title>
</head>
<body>
</body>
</html>
Let us now go through the three options one by one:
In the first method, we use the property tag to get the value of the
environment's name. Since, the environment variable is in the action class,
it is automatically available in the value stack. We can directly refer to it
using the property environment.name. Method 1 works fine, when you
have limited number of properties in a class. Imagine if you have 20
properties in the Environment class. Every time you need to refer to these
variables you need to add "environment." as the prefix. This is where the
push tag comes in handy.
188
Struts 2
In the final method, we use the set tag to create a new variable called
myenv. This variable's value is set to environment.name. So, now we can
use this variable wherever we refer to the environment's name.
Configuration Files
Your struts.xml should look like:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE struts PUBLIC
"-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
"http://struts.apache.org/dtds/struts-2.0.dtd">
<struts>
<constant name="struts.devMode" value="true" />
<package name="helloworld" extends="struts-default">
<action name="system"
class="com.tutorialspoint.struts2.SystemDetails"
method="execute">
<result name="success">/System.jsp</result>
</action>
</package>
</struts>
Your web.xml should look like:
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
id="WebApp_ID" version="3.0">
<display-name>Struts 2</display-name>
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
189
Struts 2
</welcome-file-list>
<filter>
<filter-name>struts2</filter-name>
<filter-class>
org.apache.struts2.dispatcher.FilterDispatcher
</filter-class>
</filter>
<filter-mapping>
<filter-name>struts2</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
</web-app>
Right click on the project name and click Export > WAR File to create a War file.
Then deploy this WAR in the Tomcat's webapps directory.
Finally,
start
Tomcat
server
and
try
to
access
URL
http://localhost:8080/HelloWorldStruts2/system.action. This will produce the
following screen:
Struts 2
Environment(String name)
{
this.name = name;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
}
Let us have the following action class:
package com.tutorialspoint.struts2;
import com.opensymphony.xwork2.ActionSupport;
191
Struts 2
Create Views
Let us have System.jsp with the following content:
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<%@ taglib prefix="s" uri="/struts-tags"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>System Details</title>
192
Struts 2
</head>
<body>
</body>
</html>
Let us now go through the three options one by one:
In the first method, we use the property tag to get the value of the
environment's name. Since the environment variable is in the action class,
it is automatically available in the value stack. We can directly refer to it
using the propertyenvironment.name. Method 1 works fine, when you
have limited number of properties in a class. Imagine if you have 20
properties in the Environment class. Every time you need to refer to these
variables you need to add "environment." as the prefix. This is where the
push tag comes in handy.
In the final method, we use the set tag to create a new variable called
myenv. This variable's value is set to environment.name. So, now we can
use this variable wherever we refer to the environment's name.
193
Struts 2
Configuration Files
Your struts.xml should look like:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE struts PUBLIC
"-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
"http://struts.apache.org/dtds/struts-2.0.dtd">
<struts>
<constant name="struts.devMode" value="true" />
<package name="helloworld" extends="struts-default">
<action name="system"
class="com.tutorialspoint.struts2.SystemDetails"
method="execute">
<result name="success">/System.jsp</result>
</action>
</package>
</struts>
Your web.xml should look like:
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
id="WebApp_ID" version="3.0">
<display-name>Struts 2</display-name>
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
<filter>
<filter-name>struts2</filter-name>
194
Struts 2
<filter-class>
org.apache.struts2.dispatcher.FilterDispatcher
</filter-class>
</filter>
<filter-mapping>
<filter-name>struts2</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
</web-app>
Right click on the project name and click Export > WAR File to create a War file.
Then deploy this WAR in the Tomcat's webapps directory.
Finally,
start
Tomcat
server
and
try
to
access
URL
http://localhost:8080/HelloWorldStruts2/system.action. This will produce the
following screen:
Struts 2
Environment(String name)
{
this.name = name;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
}
Let us have the following action class:
package com.tutorialspoint.struts2;
import com.opensymphony.xwork2.ActionSupport;
Struts 2
{
return SUCCESS;
}
public Environment getEnvironment() {
return environment;
}
public void setEnvironment(Environment environment) {
this.environment = environment;
}
public String getOperatingSystem() {
return operatingSystem;
}
public void setOperatingSystem(String operatingSystem) {
this.operatingSystem = operatingSystem;
}
}
Create Views
Let us have System.jsp with the following content:
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<%@ taglib prefix="s" uri="/struts-tags"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>System Details</title>
</head>
<body>
197
Struts 2
</body>
</html>
Let us now go through the three options one by one:
In the first method, we use the property tag to get the value of the
environment's name. Since the environment variable is in the action class,
it is automatically available in the value stack. We can directly refer to it
using the propertyenvironment.name. Method 1 works fine, when you
have limited number of properties in a class. Imagine if you have 20
properties in the Environment class. Every time you need to refer to these
variables you need to add "environment." as the prefix. This is where the
push tag comes in handy.
In the final method, we use the set tag to create a new variable called
myenv. This variable's value is set to environment.name. So, now we can
use this variable wherever we refer to the environment's name.
Configuration Files
Your struts.xml should look like:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE struts PUBLIC
198
Struts 2
<struts>
<constant name="struts.devMode" value="true" />
<package name="helloworld" extends="struts-default">
<action name="system"
class="com.tutorialspoint.struts2.SystemDetails"
method="execute">
<result name="success">/System.jsp</result>
</action>
</package>
</struts>
Your web.xml should look like:
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
id="WebApp_ID" version="3.0">
<display-name>Struts 2</display-name>
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
<filter>
<filter-name>struts2</filter-name>
<filter-class>
org.apache.struts2.dispatcher.FilterDispatcher
</filter-class>
</filter>
199
Struts 2
<filter-mapping>
<filter-name>struts2</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
</web-app>
Right click on the project name and click Export > WAR File to create a War file.
Then deploy this WAR in the Tomcat's webapps directory.
Finally,
start
Tomcat
server
and
try
to
access
URL
http://localhost:8080/HelloWorldStruts2/system.action. This will produce the
following screen:
Struts 2
<s:text name="i18n.label.greetings">
<s:param >Mr Smith</s:param>
</s:text>
The message must be in a resource bundle with the same name as the
action that it is associated with. In practice this means that you should
create a properties file in the same package as your Java class with the
same name as your class, but with .properties extension.
If the named message is not found, then the body of the tag will be used
as default message.
Let us check the following example to understand the usage of text tag:
Struts 2
}
}
Create Views
Let us have HelloWorld.jsp with the following content:
<%@ taglib prefix="s" uri="/struts-tags"%>
<s:i18n name="HelloWorldAction">
<s:text name="name.success"/><br>
<s:text name="name.xyz">Message doesn't exists</s:text><br>
<s:text name="name.msg.param">
<s:param >ZARA</s:param>
</s:text>
</s:i18n>
</body>
</html>
Configuration Files
Let us create a property file with the same name as of your action class package
name. So in this case we will create HelloWorldAction.properties file and keep
in the class path:
name.success = This is success message
202
Struts 2
<struts>
<constant name="struts.devMode" value="true" />
<constant name="struts.custom.i18n.resources"
value="ApplicationResources"/>
<display-name>Struts 2</display-name>
<welcome-file-list>
203
Struts 2
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
<filter>
<filter-name>struts2</filter-name>
<filter-class>
org.apache.struts2.dispatcher.FilterDispatcher
</filter-class>
</filter>
<filter-mapping>
<filter-name>struts2</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
</web-app>
Right click on the project name and click Export > WAR File to create a War file.
Then deploy this WAR in the Tomcat's webapps directory. Finally, start Tomcat
server
and
try
to
access
URL
http://localhost:8080/HelloWorldStruts2/hello.action. This will produce the
following screen:
The URLTag
These url tag is used to create a URL.
<-- Example 1 -->
204
Struts 2
<s:url value="editGadget.action">
<s:param name="id" value="%{selected}" />
</s:url>
Struts 2
}
}
Create Views
Let us have HelloWorld.jsp with the following content:
<%@ page contentType="text/html; charset=UTF-8"%>
<%@ taglib prefix="s" uri="/struts-tags"%>
<html>
<head>
<title>Hello World</title>
</head>
<body>
<s:url id="login" action="login" var="myurl">
<s:param name="user">Zara</s:param>
</s:url>
</body>
</html>
Here we are generating a url link to the "login.action". We have given this url a
name "myurl". This is so that we can reuse this url link in multiple places within
the jsp file. We then supply the url with a parameter called USER. The parameter
value is actually appended to the query string as you can see from the output
above.
The URL tag is mainly useful when you want to create a dynamic hyperlink based
on a bean's property value.
Configuration Files
Your struts.xml should look like:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE struts PUBLIC
206
Struts 2
<struts>
<constant name="struts.devMode" value="true" />
<package name="helloaction" extends="struts-default">
<action name="hello"
class="com.tutorialspoint.struts2.HelloWorldAction"
method="execute">
<result name="success">/HelloWorld.jsp</result>
</action>
</package>
</struts>
Your web.xml should look like:
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
id="WebApp_ID" version="3.0">
<display-name>Struts 2</display-name>
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
<filter>
<filter-name>struts2</filter-name>
<filter-class>
org.apache.struts2.dispatcher.FilterDispatcher
</filter-class>
</filter>
207
Struts 2
<filter-mapping>
<filter-name>struts2</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
</web-app>
Right click on the project name and click Export > WAR File to create a War file.
Then deploy this WAR in the Tomcat's webapps directory. Finally, start Tomcat
server
and
try
to
access
URL
http://localhost:8080/HelloWorldStruts2/hello.action. This will produce the
following screen:
208
Struts 2
209
Struts 2
The list of form tags is a subset of Struts UI Tags. These tags help in the rendering
of the user interface required for the Struts web applications and can be
categorised into three categories. This chapter will take you thorugh all the three
types of UI tags:
Simple UI Tags
We have used these tags in our examples already, we will brush them in this
chapter. Let us look a simple view page email.jsp with several simple UI tags:
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<%@ taglib prefix="s" uri="/struts-tags"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<s:head/>
<title>Hello World</title>
</head>
<body>
<s:div>Email Form</s:div>
<s:text name="Please fill in the form below:" />
<s:form action="hello" method="post" enctype="multipart/form-data">
<s:hidden name="secret" value="abracadabra"/>
<s:textfield key="email.from" name="from" />
<s:password key="email.password" name="password" />
<s:textfield key="email.to" name="to" />
<s:textfield key="email.subject" name="subject" />
<s:textarea key="email.body" name="email.body" />
<s:label for="attachment" value="Attachment"/>
<s:file name="attachment" accept="text/html,text/plain" />
210
Struts 2
<s:token />
<s:submit key="submit" />
</s:form>
</body>
</html>
If you are aware of HTML, then all the tags used are very common HTML tags with
an additional prefix s: along with each tag and different attributes. When we
execute the above program, we get the following user interface provided you have
setup proper mapping for all the keys used.
As shown, the s:head generates the javascript and stylesheet elements required
for the Struts2 application.
Next, we have the s:div and s:text elements. The s:div is used to render a HTML
Div element. This is useful for people who do not like to mix HTML and Struts tags
together. For those people, they have the choice to use s:div to render a div.
The s:text as shown is used to render a text on the screen.
Next we have the famiilar s:form tag. The s:form tag has an action attribute that
determines where to submit the form. Because we have a file upload element in
the form, we have to set the enctype to multipart. Otherwise, we can leave this
blank.
At the end of the form tag, we have the s:submit tag. This is used to submit the
form. When the form is submitted, all the form values are submitted to the the
action specified in the s:form tag
211
Struts 2
Inside the s:form, we have a hidden attribute called secret. This renders a hidden
element in the HTML. In our case, the "secret" element has the value
"abracadabra". This element is not visible to the end user and is used to carry the
state from one view to another.
Next we have the s:label, s:textfield, s:password and s:textarea tags. These are
used to render the label, input field, password and the text area respectively. We
have seen these in action in the "Struts - Sending Email" example.
The important thing to note here is the use of "key" attribute. The "key" attribute
is used to fetch the label for these controls from the property file. We have already
covered this feature in the Struts2 Localization, internationalization chapter.
Then, we have the s:file tag which renders a input file upload component. This
component allows the user to upload files. In this example, we have used the
"accept" parameter of the s:file tag to specify which file types are allowed to be
uploaded.
Finally we have the s:token tag. The token tag generates an unique token which
is used to find out whether a form has been double submitted.
When the form is rendered, a hidden variable is placed as the token value. Let us
say, for example that the token is "ABC". When this form is submitted, the Struts
Fitler checks the token against the token stored in the session. If it matches, it
removes the token from the session. Now, if the form is accidentally resubmitted
(either by refreshing or by hitting the browser back button), the form will be
resubmitted with "ABC" as the token. In this case, the filter checks the token
against the token stored in the session again. But because the token "ABC" has
been removed from the session, it will not match and the Struts filter will reject
the request.
Group UI Tags
The group UI tags are used to create radio button and the checkbox. Let us look
a simple view page HelloWorld.jsp with check box and radio button tags:
<%@ page contentType="text/html; charset=UTF-8"%>
<%@ taglib prefix="s" uri="/struts-tags"%>
<html>
<head>
<title>Hello World</title>
<s:head />
</head>
<body>
212
Struts 2
<s:form action="hello.action">
<s:radio label="Gender" name="gender" list="{'male','female'}" />
<s:checkboxlist label="Hobbies" name="hobbies"
list="{'sports','tv','shopping'}" />
</s:form>
</body>
</html>
When we execute the above program, our output will look similar to the following:
Let us look at the example now. In the first example, we are creating a simple
radio button with the label "Gender". The name attribute is mandatory for the
radio button tag, so we specify a name which is "gender". We then supply a list to
the gender. The list is populated with the values "male" and "female". Therefore,
in the output we get a radio button with two values in it.
In the second example, we are creating a checkbox list. This is to gather the user's
hobbies. The user can have more than one hobby and therefore we are using the
checkbox instead of the radiobutton. The checkbox is populated with the list
"sports", "TV" and "Shopping". This presents the hobbies as a checkbox list.
Select UI Tags
Let us explore the different variations of the Select Tag offered by Struts. Let us
look a simple view page HelloWorld.jsp with select tags:
<%@ page contentType="text/html; charset=UTF-8"%>
<%@ taglib prefix="s" uri="/struts-tags"%>
<html>
213
Struts 2
<head>
<title>Hello World</title>
<s:head />
</head>
<body>
<s:form action="login.action">
<s:select name="username" label="Username"
list="{'Mike','John','Smith'}" />
</s:form>
</body>
</html>
214
Struts 2
When we execute the above program, our output will look similar to the following:
First, the select tag renders the HTML select box. In the first example, we are
creating a simple select box with name "username" and the label "username".
The select box will be populated with a list that contains the names Mike,
John and Smith.
In the second example, our company has head offices in America. It also has
global offices in Asia and Europe. We want to display the offices in a select
box but we want to group the global offices by the name of the continent.
This is where the optgroup comes in handy. We use the s:optgroup tag to
create a new group. We give the group a label and a separate list.
In our example we have the combobox listing the sun signs. The selectbox
lists only four entries allowing the user to type in his sun sign if it is not in
the list. We also add a header entry to the select box. The headerentry is the
one that is displayed at the top of the select box. In our case we want to
display "Please Select". If the user does not select anything, then we assume
-1 as the value. In some cases, we do not want the user to select an empty
value. In those conditions, one would set the "emptyOption" property to false.
Finally, in our example we supply "capricorn" as the default value for the
combobox.
215
Struts 2
In the fourth example, we have a double select. A double select is used when
you want to display two select boxes. The value selected in the first select
box determines what appears in the second select box. In our example the
first select box displays "Technical" and "Other". If the user selects Technical,
we will display IT and Hardware in the second select box. Otherwise we will
display Accounting and HR. This is possible using the "list" and "doubleList"
atrributes as shown in the example.
In the above example, we did a comparison to see if the top select box equals
Technical. If it does, then we display IT and Hardware.
We also need to give a name for the top box ("name='Occupations') and the
bottom box (doubleName='occupations2')
216
Struts 2
Struts uses the DOJO framework for the AJAX tag implementation. First of all, to
proceed with this example, you need to add struts2-dojo-plugin-2.2.3.jar to your
classpath.
You can get this file from the lib folder of your struts2 download (C:\struts-2.2.3all\struts-2.2.3\lib\struts2-dojo-plugin-2.2.3.jar)
For this exercies, let us modify HelloWorld.jsp as follows:
<%@ page contentType="text/html; charset=UTF-8"%>
<%@ taglib prefix="s" uri="/struts-tags"%>
<%@ taglib prefix="sx" uri="/struts-dojo-tags"%>
<html>
<head>
<title>Hello World</title>
<s:head />
<sx:head />
</head>
<body>
<s:form>
<sx:autocompleter label="Favourite Colour"
list="{'red','green','blue'}" />
<br />
<sx:datetimepicker name="deliverydate" label="Delivery Date"
displayFormat="dd/MM/yyyy" />
<br />
<s:url id="url" value="/hello.action" />
<sx:div href="%{#url}" delay="2000">
Initial Content
</sx:div>
<br/>
<sx:tabbedpanel id="tabContainer">
<sx:div label="Tab 1">Tab 1</sx:div>
217
Struts 2
Struts 2
Next we create a URL tag to the system.action file which we created in the earlier
exercises. It doesn't have to be the system.action - it could be any action file that
you created earlier. Then we have a div with the hyperlink set to the url and delay
set to 2 seconds. What happens when you run this is, the "Initial Content" will be
displayed for 2 seconds, then the div's content will be replaced with the contents
from the hello.action execution.
Finally we have a simple tab panel with two tabs. The tabs are divs themseleves
with the labels Tab 1 and Tab2.
It should be worth noting that the AJAX tag integration in Struts is still a work in
progress and the maturity of this integration is slowly increasing with every
release.
219
Struts 2
Spring is a popular web framework that provides easy integration with lots of
common web tasks. So the question is, why do we need Spring when we have
Struts2? Well, Spring is more than a MVC framework - it offers many other goodies
which are not available in Struts.
For example: dependency injection that can be useful to any framework. In this
chapter, we will go through a simple example to see how to integrate Spring and
Struts2 together.
First of all, you need to add the following files to the project's build path from
Spring installation. You can download and install latest version of Spring
Framework from http://www.springsource.org/download
org.springframework.asm-x.y.z.M(a).jar
org.springframework.beans-x.y.z.M(a).jar
org.springframework.context-x.y.z.M(a).jar
org.springframework.core-x.y.z.M(a).jar
org.springframework.expression-x.y.z.M(a).jar
org.springframework.web-x.y.z.M(a).jar
org.springframework.web.servlet-x.y.z.M(a).jar
220
Struts 2
Now let us setup the web.xml for the Struts-Spring integration as follows:
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
id="WebApp_ID" version="3.0">
<display-name>Struts 2</display-name>
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
221
Struts 2
<listener>
<listener-class>
org.springframework.web.context.ContextLoaderListener
</listener-class>
</listener>
<filter>
<filter-name>struts2</filter-name>
<filter-class>
org.apache.struts2.dispatcher.FilterDispatcher
</filter-class>
</filter>
<filter-mapping>
<filter-name>struts2</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
</web-app>
The important thing to note here is the listener that we have configured. The
ContextLoaderListener is required to load the spring context file. Spring's
configuration file is called applicationContext.xml file and it must be placed at
the same level as the web.xml file
Let us create a simple action class called User.java with two properties firstName and lastName.
package com.tutorialspoint.struts2;
Struts 2
return "success";
}
Struts 2
"userClass", so that we can reuse this elsewhere. Next let us create the User.jsp in
the WebContent folder:
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<%@ taglib prefix="s" uri="/struts-tags"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Hello World</title>
</head>
<body>
<s:form>
<s:textfield name="firstName" label="First Name"/><br/>
<s:textfield name="lastName" label="Last Name"/><br/>
</s:form>
</body>
</html>
The User.jsp file is pretty straight forward. It serves only one purpose - to display
the values of the firstname and lastname of the user object. Finally, let us put all
entities together using the struts.xml file.
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE struts PUBLIC
"-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
"http://struts.apache.org/dtds/struts-2.0.dtd">
<struts>
<constant name="struts.devMode" value="true" />
224
Struts 2
We have now seen how to bring two great frameworks together. This concludes
the Struts - Spring integration chapter.
225
Struts 2
226
Struts 2
In this chapter, let us go through the steps involved in integrating the Tiles
framework with Struts2. Apache Tiles is a templating framework built to simplify
the development of web application user interfaces.
First of all we need to download the tiles jar files from the Apache Tiles website. You
need to add the following jar files to the project's class path.
tiles-api-x.y.z.jar
tiles-compat-x.y.z.jar
tiles-core-x.y.z.jar
tiles-jsp-x.y.z.jar
tiles-servlet-x.y.z.jar
In addition to the above, we have to copy the following jar files from the struts2
download in your WEB-INF/lib.
commons-beanutils-x.y.zjar
commons-digester-x.y.jar
struts2-tiles-plugin-x.y.z.jar
Now let us setup the web.xml for the Struts-Tiles integration as given below.
There are two important point to note here. First, we need to tell tiles, where to
find tiles configuration file tiles.xml. In our case, it will be under /WEBINF folder. Next we need to initialize the Tiles listener that comes with Struts2
download.
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
id="WebApp_ID" version="2.5">
<display-name>Struts2Example15</display-name>
<context-param>
<param-name>
org.apache.tiles.impl.BasicTilesContainer.DEFINITIONS_CONFIG
227
Struts 2
</param-name>
<param-value>
/WEB-INF/tiles.xml
</param-value>
</context-param>
<listener>
<listener-class>
org.apache.struts2.tiles.StrutsTilesListener
</listener-class>
</listener>
<filter>
<filter-name>struts2</filter-name>
<filter-class>
org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter
</filter-class>
</filter>
<filter-mapping>
<filter-name>struts2</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
</web-app>
Next let us create tiles.xml under /WEB-INF folder with the following contents:
<?xml version="1.0" encoding="UTF-8" ?>
Struts 2
<tiles-definitions>
value="Template"/>
value="/menu.jsp"/>
<put-attribute name="body"
value="/body.jsp"/>
<put-attribute name="footer"
value="/footer.jsp"/>
</definition>
value="Tiger"/>
<put-attribute name="body"
value="/tiger.jsp"/>
</definition>
value="Lion"/>
<put-attribute name="body"
value="/lion.jsp"/>
</definition>
</tiles-definitions>
Next, we define a basic skeleton layout in the baseLayout.jsp. It has five
reusable / overridable areas. Namely title, banner, menu, body and footer. We
provide the default values for the baseLayout and then we create two
customizations that extend from the default layout. The tiger layout is similar to
the basic layout, except it uses the tiger.jsp as its body and the text "Tiger" as
the title. Similarly, the lion layout is similar to the basic layout, except it uses
the lion.jsp as its body and the text "Lion" as the title.
Let us have a look at the individual jsp files. Following is the content
of baseLayout.jsp file:
<%@ taglib uri="http://tiles.apache.org/tags-tiles" prefix="tiles"%>
229
Struts 2
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title><tiles:insertAttribute name="title" ignore="true" />
</title>
</head>
<body>
<tiles:insertAttribute name="banner" /><br/>
<hr/>
<tiles:insertAttribute name="menu" /><br/>
<hr/>
<tiles:insertAttribute name="body" /><br/>
<hr/>
<tiles:insertAttribute name="footer" /><br/>
</body>
</html>
Here, we just put together a basic HTML page that has the tiles attributes. We
insert the tiles attributes in the places where we need them to be. Next, let us
create a banner.jsp file with the following content:
<img src="http://www.tutorialspoint.com/images/tp-logo.gif"/>
The menu.jsp file will have the following lines which are the links - to the
TigerMenu.action and the LionMenu.action struts actions.
<%@taglib uri="/struts-tags" prefix="s"%>
230
Struts 2
<img src="http://upload.wikimedia.org/wikipedia/commons/d/d2/Lion.jpg"/>
The lion
The tiger.jsp file will have the following content:
<img src="http://www.freewebs.com/tigerofdarts/tiger.jpg"/>
The tiger
Next, let us create the action class file MenuAction.java which contains the
following:
This is a pretty straight forward class. We declared two methods tiger() and lion()
that return tiger and lion as outcomes respectively. Let us put it all together in
the struts.xml file:
<!DOCTYPE struts PUBLIC
"-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
"http://struts.apache.org/dtds/struts-2.0.dtd">
<struts>
<package name="default" extends="struts-default">
<result-types>
<result-type name="tiles"
class="org.apache.struts2.views.tiles.TilesResult" />
</result-types>
</package>
</struts>
Let us check what we did in above file. First of all, we declared a new result type
called "tiles" as we are now using tiles instead of plain jsp for the view technology.
231
Struts 2
Struts2 has its support for the Tiles View result type, so we create the result type
"tiles" to be of the "org.apache.struts2.view.tiles.TilesResult" class.
Next, we want to say if the request is for /tigerMenu.action take the user to the
tiger tiles page and if the request is for /lionMenu.action take the user to the lion
tiles page.
We achieve this using a bit of regular expression. In our action definition, we say
anything that matches the pattern "*Menu" will be handled by this action. The
matching method will be invoked in the MenuAction class. That is,
tigerMenu.action will invoke tiger() and lionMenu.action will invoke lion(). We then
need to map the outcome of the result to the appropriate tiles pages.
Now right click on the project name and click Export > WAR File to create a War
file. Then deploy this WAR in the Tomcat's webapps directory. Finally, start Tomcat
server
and
try
to
access
URL
http://localhost:8080/HelloWorldStruts2/tigerMenu.jsp. This will produce the
following screen:
232
Struts 2
Similarly, if you goto the lionMenu.action page, you will see the lion page which
uses the same tiles layout.
233
Struts 2
Database Setup
For this tutorial, I am going to use the "struts2_tutorial" MySQL database. I
connect to this database on my machine using the username "root" and no
password. First of all, you need to run the following script. This script creates a
new table called student and creates few records in this table:
CREATE TABLE IF NOT EXISTS `student` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`first_name` varchar(40) NOT NULL,
`last_name` varchar(40) NOT NULL,
`marks` int(11) NOT NULL,
PRIMARY KEY (`id`)
);
234
Struts 2
Hibernate Configuration
Next let us create the hibernate.cfg.xml which is the hibernate's configuration file.
<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE hibernate-configuration PUBLIC
"-//Hibernate/Hibernate Configuration DTD//EN"
"http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">
<hibernate-configuration>
<session-factory>
<property name="hibernate.connection.driver_class">c
om.mysql.jdbc.Driver
</property>
<property name="hibernate.connection.url">
jdbc:mysql://www.tutorialspoint.com/struts_tutorial
</property>
<property name="hibernate.connection.username">root</property>
<property name="hibernate.connection.password"></property>
<property name="hibernate.connection.pool_size">10</property>
<property name="show_sql">true</property>
<property name="dialect">
org.hibernate.dialect.MySQLDialect
</property>
<property name="hibernate.hbm2ddl.auto">update</property>
<mapping class="com.tutorialspoint.hibernate.Student" />
</session-factory>
</hibernate-configuration>
Let us go through the hibernate config file. First, we declared that we are using
MySQL driver. Then we declared the jdbc url for connecting to the database. Then
we declared the connection's username, password and pool size. We also indicated
that we would like to see the SQL in the log file by turning on "show_sql" to true.
Please go through the hibernate tutorial to understand what these properties
mean.
Finally, we set the mapping class to com.tutorialspoint.hibernate.Student which
we will create in this chapter.
235
Struts 2
Envrionment Setup
Next you need a whole lot of jars for this project. Attached is a screenshot of the
complete list of JAR files required:
Most of the JAR files can be obtained as part of your struts distribution. If you
have an application server such as glassfish, websphere or jboss installed, then
you can get the majority of the remaining jar files from the appserver's lib folder.
If not you can download the files individually :
Rest of the files, you should be able to get from your Struts2 distribution.
236
Struts 2
Hibernate Classes
Let us now create required java classes for the hibernate integration. Following is
the content of Student.java:
package com.tutorialspoint.hibernate;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.Id;
import javax.persistence.Table;
@Entity
@Table(name="student")
public class Student {
@Id
@GeneratedValue
private int id;
@Column(name="last_name")
private String lastName;
@Column(name="first_name")
private String firstName;
private int marks;
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public String getLastName() {
return lastName;
}
public void setLastName(String lastName) {
237
Struts 2
this.lastName = lastName;
}
public String getFirstName() {
return firstName;
}
public void setFirstName(String firstName) {
this.firstName = firstName;
}
public int getMarks() {
return marks;
}
public void setMarks(int marks) {
this.marks = marks;
}
}
This is a POJO class that represents the student table as per Hibernate
specification. It has properties id, firstName and lastName which correspond to
the column names of the student table. Next let us create StudentDAO.java file
as follows:
package com.tutorialspoint.hibernate;
import java.util.ArrayList;
import java.util.List;
import org.hibernate.Session;
import org.hibernate.Transaction;
import com.googlecode.s2hibernate.struts2.plugin.\
annotations.SessionTarget;
import com.googlecode.s2hibernate.struts2.plugin.\
annotations.TransactionTarget;
Struts 2
@SessionTarget
Session session;
@TransactionTarget
Transaction transaction;
@SuppressWarnings("unchecked")
public List<Student> getStudents()
{
List<Student> students = new ArrayList<Student>();
try
{
students = session.createQuery("from Student").list();
}
catch(Exception e)
{
e.printStackTrace();
}
return students;
}
Action Class
The following file AddStudentAction.java defines our action class. We have two
action methods here - execute() and listStudents(). The execute() method is used
to add the new student record. We use the dao's save() method to achieve this.
239
Struts 2
The other method, listStudents() is used to list the students. We use the dao's list
method to get the list of all students.
package com.tutorialspoint.struts2;
import java.util.ArrayList;
import java.util.List;
import com.opensymphony.xwork2.ActionSupport;
import com.opensymphony.xwork2.ModelDriven;
import com.tutorialspoint.hibernate.Student;
import com.tutorialspoint.hibernate.StudentDAO;
Student student
= new Student();
Struts 2
}
You will notice that we are implementing the ModelDriven interface. This is used
when your action class is dealing with a concrete model class (such as Student)
as opposed to individual properties (such as firstName, lastName). The
ModelAware interface requires you to implement a method to return the model.
In our case we are returning the "student" object.
Struts 2
</head>
<body>
<s:form action="addStudent">
<s:textfield name="firstName" label="First Name"/>
<s:textfield name="lastName" label="Last Name"/>
<s:textfield name="marks" label="Marks"/>
<s:submit/>
<hr/>
<table>
<tr>
<td>First Name</td>
<td>Last Name</td>
<td>Marks</td>
</tr>
<s:iterator value="students">
<tr>
<td><s:property value="firstName"/></td>
<td><s:property value="lastName"/></td>
<td><s:property value="marks"/></td>
</tr>
</s:iterator>
</table>
</s:form>
</body>
</html>
The student.jsp is pretty straightforward. In the top section, we have a form that
submits to "addStudent.action". It takes in firstName, lastName and marks.
Because the addStudent action is tied to the ModelAware "AddSudentAction",
automatically a student bean will be created with the values for firstName,
lastName and marks auto populated.
At the bottom section, we go through the students list (see
AddStudentAction.java). We iterate through the list and display the values for first
name, last name and marks in a table.
242
Struts 2
Struts Configuration
Let us put it all together using struts.xml:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE struts PUBLIC
"-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
"http://struts.apache.org/dtds/struts-2.0.dtd">
<struts>
<constant name="struts.devMode" value="true" />
</package>
</struts>
The important thing to notice here is that our package "myhibernate" extends the
struts2 default package called "hibernate-default". We then declare two actions addStudent and listStudents. addStudent calls the execute() on the
AddStudentAction class and then upon successs, it calls the listStudents action
method.
The listStudent action method calls the listStudents() on the AddStudentAction
class and uses the student.jsp as the view
243
Struts 2
Now, right click on the project name and click Export > WAR File to create a War
file. Then deploy this WAR in the Tomcat's webapps directory. Finally, start Tomcat
server
and
try
to
access
URL
http://localhost:8080/HelloWorldStruts2/student.jsp. This will produce the
following screen:
In the top section, we get a form to enter the values for a new student record and
the bottom section lists the students in the database. Go ahead and add a new
student record and press submit. The screen will refresh and show you an updated
list every time you click Submit.
244