• Menu
  • Skip to primary navigation
  • Skip to main content
  • Skip to primary sidebar

JavaBeat

Java Tutorial Blog

  • Java
    • Java 7
    • Java 8
    • Java EE
    • Servlets
  • Spring Framework
    • Spring Tutorials
    • Spring 4 Tutorials
    • Spring Boot
  • JSF Tutorials
  • Most Popular
    • Binary Search Tree Traversal
    • Spring Batch Tutorial
    • AngularJS + Spring MVC
    • Spring Data JPA Tutorial
    • Packaging and Deploying Node.js
  • About Us
    • Join Us (JBC)
  • Java
    • Java 7
    • Java 8
    • Java EE
    • Servlets
  • Spring Framework
    • Spring Tutorials
    • Spring 4 Tutorials
    • Spring Boot
  • JSF Tutorials
  • Most Popular
    • Binary Search Tree Traversal
    • Spring Batch Tutorial
    • AngularJS + Spring MVC
    • Spring Data JPA Tutorial
    • Packaging and Deploying Node.js
  • About Us
    • Join Us (JBC)

Struts 2.0 and Spring

October 2, 2008 //  by Krishna Srinivasan//  Leave a Comment

In this post, I will describe how to do the same using Struts 2.0. The only major step that needs to be done here is to override the default Struts 2.0 OjbectFactory. Changing the ObjectFactory to Spring give control to Spring framework to instantiate action instances etc. Most of the code is from the previous post, but I will list only the additional changes here.

also read:

  • Spring Tutorials
  • Spring 4 Tutorials
  • Spring Interview Questions

1)Changing the default Object factory: In order to change the Ojbect factory to Spring, you have to add a declaration in the struts.properties file.

struts.objectFactory = spring
struts.devMode = true

2)The Action class: Here is the code for the action class

package actions;

import java.util.List;

import business.BusinessInterface;

import com.opensymphony.xwork2.ActionSupport;

public class SearchAction extends ActionSupport {
private BusinessInterface businessInterface;

private String minSalary;

private String submit;

private List data;

public String getSubmit() {
 return submit;
}

public void setSubmit(String submit) {
 this.submit = submit;
}

public BusinessInterface getBusinessInterface() {
 return businessInterface;
}

  public String execute() throws Exception {
 try {
   long minSal = Long.parseLong(getMinSalary());
   System.out.println("Business Interface: " + businessInterface + "Minimum salary : " + minSal);
   data = businessInterface.getData(minSal);
   System.out.println("Data : " + data);

 } catch (Exception e) {
   e.printStackTrace();
 }

 return SUCCESS;
}

public void setBusinessInterface(BusinessInterface bi) {
 businessInterface = bi;
}

public String getMinSalary() {
 return minSalary;
}

public void setMinSalary(String minSalary) {
 this.minSalary = minSalary;
}

public List getData() {
 return data;
}

public void setData(List data) {
 this.data = data;
}
}
  • The Action class here does not have access to the HttpServetRequest and HttpServletResponse. Hence the action class itself was changed to the session scope for this example (see below)
  • In order for the action class to be aware of the Http Session, the action class has to implement the ServletRequestAware interface, and define a setServletRequest method, which will be used to inject the ServletRequest into the action class.
  • The BusinessInterface property is injected by Spring framework.

3)The struts Configuration:

<!DOCTYPE struts PUBLIC
     "-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
     "http://struts.apache.org/dtds/struts-2.0.dtd">
<struts>
<package name="Struts2Spring" namespace="/actions" extends="struts-default">
 <action name="search" class="actions.SearchAction">
   <result>/search.jsp</result>
 </action>
</package>
</struts>

The action’s class attribute has to map the id attribute of the bean defined in the spring bean factory definition.

4)The Spring bean factory definition:

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.0.xsd"
default-autowire="autodetect">
<bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close">
 <property name="driverClassName">
   <value>oracle.jdbc.driver.OracleDriver</value>
 </property>
 <property name="url">
   <value>jdbc:oracle:thin:@localhost:1521:orcl</value>
 </property>
 <property name="username">
   <value>scott</value>
 </property>
 <property name="password">
   <value>tiger</value>
 </property>
</bean>

<!-- Configure DAO -->
<bean id="empDao" class="data.DAO">
 <property name="dataSource">
   <ref bean="dataSource"></ref>
 </property>
</bean>
<!-- Configure Business Service -->
<bean id="businessInterface" class="business.BusinessInterface">
 <property name="dao">
   <ref bean="empDao"></ref>
 </property>
</bean>
<bean id="actions.SearchAction" name="search" class="actions.SearchAction" scope="session">
    <property name="businessInterface" ref="businessInterface" />
  </bean>
</beans>
  • The bean definition for the action class contains the id attribute which matches the class attribute of the action in struts.xml
  • Spring 2’s bean scope feature can be used to scope an Action instance to the session, application, or a custom scope, providing advanced customization above the default per-request scoping.

5)The web deployment descriptor:

<?xml version="1.0" encoding="UTF-8"?>
<web-app id="WebApp_9" version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">

<display-name>Struts2Spring</display-name>

<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>

<listener>
 <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
<listener>
 <listener-class>org.springframework.web.context.request.RequestContextListener</listener-class>
</listener>
<welcome-file-list>
 <welcome-file>index.html</welcome-file>
</welcome-file-list>
</web-app>

The only significant addition here is that of the RequestContextListener. This listener allows Spring framework, access to the HTTP session information.

6)The JSP file: The JSP file is shown below. The only change here is that the action class, instead of the Data list is accessed from the session.

<%@ page language="java" contentType="text/html; charset=ISO-8859-1" pageEncoding="ISO-8859-1"%>
<%@ taglib uri="http://displaytag.sf.net" prefix="display"%>
<%@ taglib prefix="s" uri="/struts-tags"%>
<%@ page import="actions.SearchAction,beans.Employee,business.Sorter,java.util.List,org.displaytag.tags.TableTagParameters,org.displaytag.util.ParamEncoder"%>
<html>
<head>
<title>Search page</title>
<link rel="stylesheet" type="text/css" href="/StrutsPaging/css/screen.css" />
</head>
<body bgcolor="white">
<s:form action="/actions/search.action">
<table>
  <tr>
    <td>Minimum Salary:</td>
    <td><s:textfield label="minSalary" name="minSalary" /></td>
  </tr>
  <tr>
    <td colspan="2"><s:submit name="submit" /></td>
  </tr>
</table>
</s:form>
<jsp:scriptlet>

 SearchAction action = (SearchAction)session.getAttribute("actions.SearchAction");
 session.setAttribute("empList", action.getData());
  if (session.getAttribute("empList") != null) {
   String sortBy = request.getParameter((new ParamEncoder("empTable")).encodeParameterName(TableTagParameters.PARAMETER_SORT));
   Sorter.sort((List) session.getAttribute("empList"), sortBy);

 </jsp:scriptlet>

<display:table name="sessionScope.empList" pagesize="4" id="empTable" sort="external" defaultsort="1" defaultorder="ascending" requestURI="">
<display:column property="empId" title="ID" sortable="true" sortName="empId" headerClass="sortable" />
<display:column property="empName" title="Name" sortName="empName" sortable="true" headerClass="sortable" />
<display:column property="empJob" title="Job" sortable="true" sortName="empJob" headerClass="sortable" />
<display:column property="empSal" title="Salary" sortable="true" headerClass="sortable" sortName="empSal" />
</display:table>
<jsp:scriptlet>
  }
 </jsp:scriptlet>

</body>
</html:html>

also read:

  • Spring Books
  • Introduction to Spring Framework
  • Introduction to Spring MVC Framework

7)The Other required classes: The following other classes have been used for the example, and they can be obtained from the previous posts (1, 2).

  • Employee.java
  • BusinessInterface.java
  • Sorter.java
  • DAO.java
  • EmpMapper.java

Category: Spring FrameworkTag: Spring Integration, Struts, Struts Integration

About Krishna Srinivasan

He is Founder and Chief Editor of JavaBeat. He has more than 8+ years of experience on developing Web applications. He writes about Spring, DOJO, JSF, Hibernate and many other emerging technologies in this blog.

Previous Post: « Circular Linked List in Java
Next Post: Pagination using Hibernate and JSP »

Reader Interactions

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.

Primary Sidebar

Follow Us

  • Facebook
  • Pinterest

FEATURED TUTORIALS

New Features in Spring Boot 1.4

Difference Between @RequestParam and @PathVariable in Spring MVC

What is new in Java 6.0 Collections API?

The Java 6.0 Compiler API

Introductiion to Jakarta Struts

What’s new in Struts 2.0? – Struts 2.0 Framework

JavaBeat

Copyright © by JavaBeat · All rights reserved
Privacy Policy | Contact