struts2和spring的整合


struts2spring的整合,關鍵點在於struts2中的action要歸入spring容器的管理中成爲一個bean有兩種整合方式spring

整合方式一app

(1) struts.xml中配置Struts2actionSpring來負責進行實例化 jsp

<constant name="struts.objectFactory" value="spring" />spa


(2) Action配置在applicationContext.xml裏,利用Spring初始化Actionbean插件

Struts的業務邏輯控制器類配置在Spring的配置文件中,Action中引用的業務類一併注入。 
(這樣的處理,必須將action類的scope配置成property)
Xml
代碼
<bean id="LoginAction" class="yaso.struts.action.LoginAction" scope="property">
       <property name="loginDao" ref="LoginDao"/>
</bean>
xml

接着,在struts.xml中配置Action時,指定<action>class屬性爲Spring配置文件中相應beanid或者name值訪問該Action時,會經過class對應值去spring中尋找相同id值的bean 。示例以下: 
Xml代碼
<action name=」LoginAction」 class=」LoginAction」>
       <result name=」success」>/index.jsp</result>
</action>
作用域


整合方式二get

不須要在applicationContext.xml.xml裏配置Action,利用Struts-Spring_Plugin插件自動初始化Actionio

 

業務類在Spring配置文件中配置,Action不須要配置,Struts2Action像沒有整合Spring以前同樣配置,<action>class屬性指定業務邏輯控制器類的全限定名。class

Action中引用的業務類不須要本身去初始化,Struts2Spring插件會使用bean的自動裝配將業務類注入進來,其實Action也不是Struts2建立的,而是Struts2Spring插件建立的。默認狀況下,插件使用by name的方式裝配,能夠經過增長Struts2常量來修改匹配方式:設置方式爲:struts.objectFactory.spring.autoWire = typeName,可選的裝配參數以下:


 name:至關於spring配置的autowrie="byName"(默認)
 type:
至關於spring配置的autowrie="byType"
 auto:
至關於spring 配置的autowrie="autodetect"
 constructor:
至關於spring配置的autowrie="constructor"

OK,這裏說了配置部分,可是,這裏有一個問題, 就是Spring管理Action,若是按照第一方式,那麼只要經過scope="property"來配置爲每一個請求建立一個Action實例。 那麼第二種方式,咱們並無指定Action的做用域。

相關文章
相關標籤/搜索