Spring整合Struts2
Spring如何在Web应用中使用?
需要额外导入的jar包
- spring-web-4.0.0.RELEASE.jar
- spring-webmvc-4.0.0.RELEASE.jar
如何创建IoC容器?
非Web应用在main方法中直接创建,Web应用应该在Web应用被服务器加载时就创建IoC容器。在ServletContextListener
的contextInitialized(ServletContextEvent sce)
方法中创建IoC容器。
package com.spring.struts2.listener;
import javax.servlet.ServletContext;
import javax.servlet.ServletContextEvent;
import javax.servlet.ServletContextListener;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
public class SpringServletContextListener implements ServletContextListener {
public SpringServletContextListener() {
}
@Override
public void contextInitialized(ServletContextEvent sce) {
//获取Spring配置文件的名称
ServletContext servletContext = sce.getServletContext();
String config = servletContext.getInitParameter("configLocation");
System.out.println(config);
//创建IoC容器
ApplicationContext ctx = new ClassPathXmlApplicationContext(config);
//把IoC容器放在ServletContext的一个属性中
servletContext.setAttribute("ApplicationContext", ctx);
}
@Override
public void contextDestroyed(ServletContextEvent sce) {
}
}
在Web应用的其他组件中如何来访问IoC容器呢?
在ServletContextListener
的contextInitialized(ServletContextEvent sce)
方法中创建IoC容器后,可以把其放在ServletContext(即application域)的一个属性中。
如上
实际上,Spring配置文件的名字和位置也是可配置的。将其配置到Web 应用初始化参数中较为合适。
<!-- 配置Spring配置文件的名称和位置 -->
<context-param>
<param-name>configLocation</param-name>
<param-value>applicationContext.xml</param-value>
</context-param>
<!-- 启动IoC容器的ServletContextListener -->
<listener>
<listener-class>com.spring.struts2.listener.SpringServletContextListener</listener-class>
</listener>
Spring有提供一个ServletContextListener
<!-- 配置Spring配置文件的名称和位置 -->
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath:applicationContext.xml</param-value>
</context-param>
<!-- 启动IoC容器的ServletContextListener -->
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
获取ApplicationContext
<%
//从application域对象中得到IoC容器
ApplicationContext ctx = WebApplicationContextUtils.getWebApplicationContext(application);
Person person = ctx.getBean(Person.class);
person.hello();
%>
集成Struts2
使IoC容器来管理Struts2的Action,需要额外的导入struts2-spring-plugin-2.3.28.jar
在web.xml中配置Struts2的过滤器
<!-- 配置Struts2的Filter -->
<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>
加入strust2的配置文件
Struts2和Spring整合的两种方式
1.Action的类由Struts2自身去创建
action需要在struts.xml中配置
<package name="ssh" extends="struts-default" namespace="/">
<action name="product_*" class="com.imooc.ssh.action.ProductAction" method="{1}">
</action>
</package>
2.Action的类交给Spring框架创建
推荐使用这种方式,这样可以使用AOP来管理
在applicationContext.xml
文件中配置action,需要注意的,必须加上scope
属性,并设置为prototype
,即struts2的action是非单例的。
<bean id="personService" class="com.spring.struts2.service.PersonService">
</bean>
<bean id="personAction" class="com.spring.struts2.action.PersonAction" scope="prototype">
<property name="personService" ref="personService"></property>
</bean>
配置struts2的配置文件,在配置action的class属性时,不再配置class的类名,指向IoC容器中的bean的id即可。
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE struts PUBLIC
"-//Apache Software Foundation//DTD Struts Configuration 2.3//EN"
"http://struts.apache.org/dtds/struts-2.3.dtd">
<struts>
<constant name="struts.enable.DynamicMethodInvocation" value="false"></constant>
<constant name="struts.devMode" value="true"></constant>
<package name="default" namespace="/" extends="struts-default">
<action name="person-save" class="personAction">
<result name="success">test.jsp</result>
</action>
</package>
</struts>
struts2-spring-plugin
导入struts2-spring-plugin-2.3.28.jar
后,打开struts2-spring-plugin-2.3.28.jar
包,会发现有一个struts-plugin.xml
的文件,在文件中,发发现开启如下的常量:
<!-- Make the Spring object factory the automatic default -->
<constant name="struts.objectFactory" value="spring" />
在struts2-core-2.3.28.jar
包下的org.apache.struts2
的default.properties
中,与如下的内容
### if specified, the default object factory can be overridden here
### Note: short-hand notation is supported in some cases, such as "spring"
### Alternatively, you can provide a com.opensymphony.xwork2.ObjectFactory subclass name here
# struts.objectFactory = spring
### specifies the autoWiring logic when using the SpringObjectFactory.
### valid values are: name, type, auto, and constructor (name is the default)
struts.objectFactory.spring.autoWire = name
表示会按照name自动装配。
所以,如下在Action中提供一个Service,并提供一个setService的方法,它就可以按名称来自动注入,这就是插件包的作用。
//struts-spring插件包按名称自动注入
private ProductService productService;
public void setProductService(ProductService productService) {
this.productService = productService;
}