1、整合 Spring 和 Strust2 一起工作关键字: struts2 spring在 Struts2 中整合 Spring 的 IoC 支持是一件十分简单的事情。让我们一步一步来实现:1)复制 struts2-spring-plugin-x-x-x.jar 和相应的 spring.jar 到/WEB-INF/lib目录下。2)在 struts.properties 中设置 struts.objectFactory 属性值struts.properties1. struts.objectFactory = spring 或者是在 XML 文件中进行常量配置struts.xml1. 2. 3.
2、 3)配置 Spring 监听器web.xml1. 2. org.springframework.web.context.ContextLoaderListener 3. 通过 Spring 配置来注册对象applicationContext.xml1. 2. 5. 6. 7. 当然你也可以拥有更多的 Spring 配置文件。在 web.xml 中进行下列设置,从而使 Spring 的 ApplicationContext 通过匹配所给定模式的文件来初始化对象web.xml1. 2. 3. contextConfigLocation 4. 5. /WEB-INF/applicationCont
3、ext-*.xml,classpath*:applicationContext-*.xml6. 7. 4)修改你的 Struts 配置文件struts.xml1. 4. 5. 6. 7. 8. hello.jsp 9. 10. 11. hello.jsp 12. 13. 默认情况下,Spring 从上面显示的 applicationContext.xml 文件中寻找为 hello 所做的配置5)好了,现在你的 Struts2 和 Spring 就能正常的一起工作了。有几个配置技术点需要详细说明下:装配模式。你可以通过设置修改 struts.properties 中下列属性的值来改变装配模式。n
4、ame按照你的 action 的属性的名字和 Spring 里的bean 的名字匹配,如果匹配就自动装配。这是缺省的type按照你的 action 的属性的类型,在 Spring 注册的bean 中查找,如果相同就自动装配。这需要你在Spring 中仅注册了一个此类型的 beanauto Spring 会试图自动监测来找到最好的方法自动装配你的 actionconstructor Spring 会自动装配 bean 的构造函数的参数是否使用类缓存。你可以通过设置修改 struts.properties 中下列属性的值来改变是否使用 Spring 自身的类缓存机制。可以设定的值为 true 或 false,默认为 true。struts.properties1.struts.objectFactory.spring.useClassCache = false