在Struts2中整合Spring的IoC

申明  要Spring+Strut2  HelloWord代码的留下你们的邮箱,有时间的话就跟你们发过来

In the past, I posted an example on how to use Displaytag with Struts and Spring, using Spring JDBC for data access(1, 2). 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.

  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
    struts.enable.DynamicMethodInvocation = false
    src/struts.properties
  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;
    }
    }
    SearchAction.java
    • 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>
    src/struts.xml
    • 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>
    WEB-INF/applicationContext.xml
    • 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>
    web.xmlThe 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>
    search.jsp
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值