码迷,mamicode.com
首页 > 编程语言 > 详细

[转]Struts2 是如何把Action交给Spring托管

时间:2015-09-11 12:27:01      阅读:186      评论:0      收藏:0      [点我收藏+]

标签:

例1:

 首先,来看看如何让Spring 来管理Action.


1.在struts.xml中加入 <constant name="struts.objectFactory" value="spring"/> 
有两种整合方式:
     (1) 将Struts的业务逻辑控制器类配置在Spring的配置文件中,Action中引用的业务类一并注入。

                (这样的处理,必须将action类的scope配置成prototype)

Xml代码  技术分享
  1. <bean id="LoginAction" class="yaso.struts.action.LoginAction">  
  2.    <property name="loginDao" ref="LoginDao"/>  
  3. </bean>   

 接着,在struts.xml或者等效的Struts2配置文件中配置Action时,指定<action>的class属性为Spring配置文件中相应bean的id或者name值。示例如下: 
 

Xml代码  技术分享
  1. <action name=”LoginAction” class=”LoginAction”>  
  2.                      <result name=”success”>/index.jsp</result>  
  3.  </action>   

 

         (2) 业务类在Spring配置文件中配置,Action不需要配置,Struts2的Action像没有整合Spring之前一样配置,

           <action>的class属性指定业务逻辑控制器类的全限定名。  Action中引用的业务类不需要自己去初始化,

Struts2的Spring插件会使用bean的自动装配将业务类注入进来,其实Action也不是Struts2创建的,

而是Struts2的Spring插件创建的。默认情况下,插件使用by name的方式装配,

可以通过增加Struts2常量来修改匹配方式:设置方式

为:struts.objectFactory.spring.autoWire = typeName,

可选的装配参数如下:

name:相当于spring配置的autowrie="byName"(默认)
type:相当于spring配置的autowrie="byType"
auto:相当于spring 配置的autowrie="autodetect"
constructor: 相当于spring配置的autowrie="constructor"

 

例2:

java struts2中的action如何交由spring管理

struts2.xml中加入<constant name="struts.objectFactory" value="spring"></constant>
添加struts2-spring-plugin的jar包,action配置的class改为spring的bean id值
追问:
这就是必须加的吗<constant name="struts.objectFactory" value="spring"></constant>
我看有的整合就不用这句话
追答:
可以不用加,struts看到有struts2-spring-plugin时会自动识别的



例3:

把struts2的action交给spring去 管理和注入属性, struts.xml怎么写

 
添加:struts2-spring-plugin.jar
在struts2的xml文件里面添加一句:
<constant name="struts2.ObjectFactory" value="Spring"/>这一句
如果你的struts2版本比较高,也可以不要加这个,因为他内部已经默认添加了这句
然后<action name="" class="..."/>这个name属性就是引用spring配置里面的bean的id

其他的都和以前一样写
 

[转]Struts2 是如何把Action交给Spring托管

标签:

原文地址:http://www.cnblogs.com/ZhuRenWang/p/4800233.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!