Spring与Struts整合
Posted 沙中世界
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Spring与Struts整合相关的知识,希望对你有一定的参考价值。
正常的spring与struts工程文件所需jar包及配置条件下,增加如下配置:
struts.xml
增加:<constant name="struts.objectFactory" value="spring" />
配置action的时候,class直接写spring配置文件(applicationContext.xml)中的bean的ID
增加:struts2-spring-plugin-2.3.28 Jar包即可;
注意在applicationContext.xml配置bean的时候,
<bean id="userAction" class="com.pt.UserAction" scope="singleton">
</bean>
指定为单例模式
SSI整合后的程序:http://download.csdn.net/detail/panpanteng/9535879
以上是关于Spring与Struts整合的主要内容,如果未能解决你的问题,请参考以下文章