關(guān)鍵字: struts2 spring
在Struts2中整合Spring的IoC支持是一件十分簡(jiǎn)單的事情。讓我們一步一步來(lái)實(shí)現(xiàn):
1)復(fù)制struts2-spring-plugin-x-x-x.jar和相應(yīng)的spring.jar到/WEB-INF/lib目錄下。
2)在struts.properties中設(shè)置struts.objectFactory屬性值
struts.properties
- struts.objectFactory = spring
或者是在XML文件中進(jìn)行常量配置
struts.xml
- <struts>
- <constant name="struts.objectFactory" value="spring" />
- </struts>
3)配置Spring監(jiān)聽(tīng)器
web.xml
- <listener>
- <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
- </listener>
通過(guò)Spring配置來(lái)注冊(cè)對(duì)象
applicationContext.xml
- <?xml version="1.0" encoding="UTF-8"?>
- <!DOCTYPE beans PUBLIC
- "-//SPRING//DTD BEAN//EN"
- "http://www.springframework.org/dtd/spring-beans.dtd">
- <beans default-autowire="autodetect">
- <bean id="hello" class="hpfyeah.struts2.spring.HelloWorldAction"/>
- </beans>
當(dāng)然你也可以擁有更多的Spring配置文件。在web.xml中進(jìn)行下列設(shè)置,從而使Spring的ApplicationContext通過(guò)匹配所給定模式的文件來(lái)初始化對(duì)象
web.xml
-
- <context-param>
- <param-name>contextConfigLocation</param-name>
- <param-value>
- /WEB-INF/applicationContext-*.xml,classpath*:applicationContext-*.xml
- </param-value>
- </context-param>
4)修改你的Struts配置文件
struts.xml
- <!DOCTYPE struts PUBLIC
- "-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
- "http://struts.apache.org/dtds/struts-2.0.dtd">
- <struts>
- <include file="struts-default.xml"/>
- <package name="default" extends="struts-default">
- <action name="pureStruts" class="hpfyeah.struts2.spring.HelloWorldAction">
- <result>hello.jsp</result>
- </action>
- <action name="springStruts" class="hello">
- <result>hello.jsp</result>
- </action>
- </struts>
默認(rèn)情況下,Spring從上面顯示的applicationContext.xml文件中尋找為hello所做的配置
5)好了,現(xiàn)在你的Struts2和Spring就能正常的一起工作了。有幾個(gè)配置技術(shù)點(diǎn)需要詳細(xì)說(shuō)明下:
裝配模式。你可以通過(guò)設(shè)置修改struts.properties中下列屬性的值來(lái)改變裝配模式。
name |
按照你的action的屬性的名字和Spring里的bean的名字匹配,如果匹配就自動(dòng)裝配。這是缺省的 |
type |
按照你的action的屬性的類型,在Spring注冊(cè)的bean中查找,如果相同就自動(dòng)裝配。這需要你在Spring中僅注冊(cè)了一個(gè)此類型的bean |
auto |
Spring會(huì)試圖自動(dòng)監(jiān)測(cè)來(lái)找到最好的方法自動(dòng)裝配你的action |
constructor |
Spring會(huì)自動(dòng)裝配bean的構(gòu)造函數(shù)的參數(shù) |
是否使用類緩存。你可以通過(guò)設(shè)置修改struts.properties中下列屬性的值來(lái)改變是否使用Spring自身的類緩存機(jī)制。可以設(shè)定的值為true或false,默認(rèn)為true。
struts.properties
- struts.objectFactory.spring.useClassCache = false
|
按照以上步驟做了,但出錯(cuò)、異常信息如下
Messages: |
- springhello
- Action class [springhello] not found
|
File: |
com/caucho/loader/DynamicClassLoader.java |
Line number: |
1,124 |
posted on 2007-10-24 17:54
有貓相伴的日子 閱讀(2646)
評(píng)論(2) 編輯 收藏 所屬分類:
spring