Lot of times I have been asked by users on this site to write tutorial about Struts 2 Framework. My previous tutorial on Creating Struts Application in Eclipse is one of the most viewed article on this site.
So lets begin Part 1 of 7-parts series tutorials on Struts 2 Framework. In these tutorials we will discuss the Introduction of Struts2 framework, validation framework, the interceptors in struts 2, tiles plugin and its application with example, a file upload example and struts2 ajax example.
[sc:Struts2_Tutorials]
Apache Struts 2 is an elegant, extensible framework for creating enterprise-ready Java web applications. The framework is designed to streamline the full development cycle, from building, to deploying, to maintaining applications over time.
Apache Struts2 was originally known as WebWork 2. After working independently for several years, the WebWork and Struts communities joined forces to create Struts2. This new version of Struts is simpler to use and closer to how Struts was always meant to be.
Struts 2 is a pull-MVC framework. i.e. the data that is to be displayed to user has to be pulled from the Action.
Struts2 supports annotation based configurations which are easy to create and more intuitive. Action class in Struts 2 act as the model in the web application. Unlike Struts, Struts 2 Action class are plain POJO objects thus simplifying the testing of the code. Struts2 also comes with power APIs to configure Interceptors that reduce greatly the coupling in application. The view part of Struts 2 is highly configurable and it supports different result-types such as Velocity, FreeMarker, JSP, etc.
Struts 2 Architecture is based on WebWork 2 framework. It leverages the standard JEE technologies such as Java Filters, JavaBeans, ResourceBundles, Locales, XML etc in its architecture.
Following is its framework diagram.
Image Courtesy: struts.apache.org
FilterDispatcher
filter is called which consults the ActionMapper to determine whether an Action should be invoked.struts.xml
.FilterDispatcher
). And the result is then sent to the servlet container which in turns send it back to client.
The request processing lifecycle of Struts2 framework is pretty much discussed in above section where we saw the architecture of Struts 2 framework.
AJAX is a well known term in web development. It is now possible to write desktop like web2.0 application using AJAX. Untill Struts 1.x, developer had to write and maintain the code in javascript to add AJAX support.
But now Struts 2 gives you Ajax ‘out of the box’. No writing of javascript, no debugging against various browsers; just configure and go.
Struts 2 comes with highly configurable AJAX tag library which can be used directly without writing JavaScript code. Struts 2 also support Dojo library. Its now very easy to add AJAX enabled feature such as Autocomplete to your web application.
Related: Introduction to DOJO Toolkit
Let us see the basic difference between Struts 1 and 2 framework.
HttpServletRequest
and HttpServletResponse
is passed to the execute method when an Action is invoked. Struts 2 Actions are not coupled to a container. Most often the servlet contexts are represented as simple Maps, allowing Actions to be tested in isolation.Now that we have idea about architecture of Struts 2 framework and its lifecycle, in the next part we will create a working Struts 2 Hello World application from scratch.
Java URL Encoder/Decoder Example - In this tutorial we will see how to URL encode/decode…
Show Multiple Examples in OpenAPI - OpenAPI (aka Swagger) Specifications has become a defecto standard…
Local WordPress using Docker - Running a local WordPress development environment is crucial for testing…
1. JWT Token Overview JSON Web Token (JWT) is an open standard defines a compact…
GraphQL Subscription provides a great way of building real-time API. In this tutorial we will…
1. Overview Spring Boot Webflux DynamoDB Integration tests - In this tutorial we will see…
View Comments
i have to integrate my product with struts. product can only call JSPs (extension .jsp). now I need to get some values in request to display when JSP getting rendered. where should i set those values?? i m using struts 2.0
Hi Alkesh,
I am not sure if I understand your requirement but I assume you want to set some request parameters from Struts2 Action class and need to access it from JSP(?). If this is the case, you may want to implement ServletRequestAware class in your Action class. This interface comes with a method
public void setServletRequest(HttpServletRequest request);
which is called by Struts2 framework. Thus it will give you access to request object.[code language="java"]
import org.apache.struts2.interceptor.ServletRequestAware
public class MyRequest implements ServletRequestAware {
private HttpServletRequest request;
public String execute() {
//My execute method
request.setAttribute("someattribute", "value")
}
public void setServletRequest(HttpServletRequest request) {
this.request = request;
}
}[/code]
Hope this will solve the problem.
Hi - Small correction on Comparison of Struts 1 and Struts 2, point# 5 -> OGNL stands for "Object Graph Navigation Language" not "Object Graph Notation Language"
Really i like your posts... every day i will learn some new things...Good Job..
Thanks,
-Soma
Hi Viral,
How do I use Log4j with struts 2.?
Many thanks in advance.
@ Amol
Log4j is independent of the struts implementation.
In a web context u can use a start servlet to intiliaze the log4j system.
The start servlet primarily can be configured in the deployment descriptor (WEB.xml)
Regards,
Ronald
I am getting "WARNING: No configuration found for the specified action: 'login.action' in namespace: '/'. Form action defaulting to 'action' attribute's literal value.
I am unable to resolve this. P;ease suggest..
Make Sure dat yhu copied struts lib files in to Lib folder.
hi
i would like to know how i can send a value from a bean to a jsp. here is my scenario...
i have jsp1 which check if a person's username and id are correct and logs them in and it compares the input text filed with a getMethod who's setMethod was set by a result set from the database. if the set method get mehtod is equal to the username and idNum input fields then the person can be logged-in
on jsp2 the person's address,surname must be viewed because the login details where correct , meaning that the if statement has validates that this person's data exist in the database...
if( bean.getId == request.getParameter("idNum") && request.getParameter("username"))
forward my jsp2 and display data at this person's detail on jsp2.
Hi,
Is it possible to concatenate two values in value attribute?…. See my sample declaration( value=”%{#dynamicRowArrayList.txtField#conut}” ) count is a name and dynamicRowArrayList is list iterator var value . Do you have any idea. please let me know.
I have struts 2 Simple Login Form but i have an error resource is not avalilable.
Can u help me to figure out this problem....
i have an property file for each action class,wr i want to put that files,,whether in my java src or in webinf classes..
[code language="java"]
public class RegisterDAOImpl extends JdbcDaoSupport
{
private Register register;
public RegisterDAOImpl(){
try{
// PreparedStatement preparedStatement = getConnection().prepareStatement("insert into neha.emp values('1vivk1','1vifk1','1vdik1','v1ik1','b1f')");
PreparedStatement preparedStatement = getConnection().prepareStatement("insert into neha.emp values(?,?,?,?,?)");
String userName=register.getUserName();
String password=register.getPassword();
String address=register.getAddress();
String city=register.getCity();
String email=register.getEmail();
preparedStatement.setString(1, userName);
preparedStatement.setString(2, password);
preparedStatement.setString(3, address);
preparedStatement.setString(4, city);
preparedStatement.setString(5,email);
int i=preparedStatement.executeUpdate();
System.out.println("No of rows Updated ->" +i);
}
catch (SQLException e) {
e.printStackTrace();
}
finally
{
destroy();
}
}
}
//Giving NullPointerException When i am fetching data from TextField nd storing it in MySql /
//DB table using Struts Framework
[/code]
Dont use register directly instead create new instance of the register and then try using hope it will solve ur problem
Register register = new Register();
and then
String userName=register.getUserName();
String password=register.getPassword();
String address=register.getAddress();