您好,登錄后才能下訂單哦!
spring提供了一個(gè)ContextLoaderListener,該監(jiān)聽類實(shí)現(xiàn)了ServletContextListener接口。該類可以作為Listener使用,它會在創(chuàng)建時(shí)自動查找WEB-INF/下的applicationContext.xml文件,因此如果只有一個(gè)配置文件且配置文件命名為applicationContext.xml,則只需在web.xml文件中增加如下配置片段:
<!-- 使用ContextLoaderListener初始化Spring容器 --> <listener> <listener-class>org.springframework.web.context.ContextLoaderListener </listener-class> </listener>
如果有多個(gè)配置文件需要載入,則考慮使用<context-param.../>元素確定配置文件的文件名。,COntextLoaderListener加載時(shí),會查找名為contextConfigLocation的初始化參數(shù),因此配置<context-param.../>時(shí)應(yīng)指定參數(shù)名為contextConfigLocation。
<?xml version="1.0" encoding="GBK"?> <web-app xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" version="3.0"> <context-param> <param-name> contectCOnfigLocation </param-name> <param-value>/WEB-INF/daocontext.xml,/WEB-INF/applicationCotext.xml </param-value> </context-param> <!-- 使用ContextLoaderListener初始化Spring容器 --> <listener> <listener-class>org.springframework.web.context.ContextLoaderListener </listener-class> </listener> </web-app>
Spring根據(jù)配置文件創(chuàng)建WebApplicationContext對象,并將其保存在Web應(yīng)用的ServletContext中。如果要獲取應(yīng)用中的ApplicationContext實(shí)例,則可以根據(jù)
如下獲?。?/strong>
WebApplicationContext ctx=WebApplicationContextUtils.getWebApplicationContext(servletContext)
讓Spring管理控制器
當(dāng)Struts2將請求轉(zhuǎn)發(fā)給指定的Action時(shí),Struts2中的該Action只是一個(gè)傀儡,他只是一個(gè)代號,并沒有指定實(shí)際的實(shí)現(xiàn)類,當(dāng)然也不可能創(chuàng)建Action實(shí)例,二隱藏在該action下的是Spring容器中的Action實(shí)例,他才是真正處理用戶請求的控制器。
其中Struts2只是一個(gè)偽控制器,這個(gè)偽控制器的功能實(shí)際由Spring容器中的控制器來完成,這就實(shí)現(xiàn)了讓核心控制器調(diào)用Spring容器中的action來處理用戶請求。在這種策略下,處理用戶請求的Action由Spring插件負(fù)責(zé)創(chuàng)建,但Spring插件創(chuàng)建Action實(shí)例時(shí)。并不是利用配置Action時(shí)指定的class屬性來創(chuàng)建該action實(shí)例,而是從Spring容器中取出對應(yīng)的Bean實(shí)例完成創(chuàng)建。
web.xml
<?xml version="1.0" encoding="GBK"?> <web-app xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" version="3.0"> <!-- 使用ContextLoaderListener初始化Spring容器 --> <listener> <listener-class>org.springframework.web.context.ContextLoaderListener </listener-class> </listener> <!-- 定義Struts 2的FilterDispathcer的Filter --> <filter> <filter-name>struts2</filter-name> <filter-class>org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter</filter-class> </filter> <!-- FilterDispatcher用來初始化Struts 2并且處理所有的WEB請求。 --> <filter-mapping> <filter-name>struts2</filter-name> <url-pattern>/*</url-pattern> </filter-mapping> </web-app>
applicationcontext.xml
<?xml version="1.0" encoding="GBK"?> <!-- Spring配置文件的根元素,使用spring-beans-3.0.xsd語義約束 --> <beans xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.springframework.org/schema/beans" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd"> <!-- 定義一個(gè)業(yè)務(wù)邏輯組件,實(shí)現(xiàn)類為MyServiceImp --> <bean id="myService" class="com.bh.service.impl.MyServiceImpl"/> <!-- 讓Spring管理的Action實(shí)例,因?yàn)槊總€(gè)action里包含請求的狀態(tài)信息,所以必須配置scope不能為單例 --> <bean id="loginAction" class="com.bh.action.LoginAction" scope="prototype"> <!-- 依賴注入業(yè)務(wù)邏輯組件 --> <property name="ms" ref="myService"/> </bean> </beans>
struts.xml
<?xml version="1.0" encoding="GBK"?> <!-- 指定Struts 2配置文件的DTD信息 --> <!DOCTYPE struts PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 2.1.7//EN" "http://struts.apache.org/dtds/struts-2.1.7.dtd"> <!-- Struts 2配置文件的根元素 --> <struts> <!-- 配置了系列常量 --> <constant name="struts.i18n.encoding" value="GBK"/> <constant name="struts.devMode" value="true"/> <package name="lee" extends="struts-default"> <!-- 定義處理用戶請求的Action,該Action的class屬性不是實(shí)際處理類 , 而是Spring容器中的Bean實(shí)例--> <action name="loginPro" class="loginAction"> <!-- 為兩個(gè)邏輯視圖配置視圖頁面 --> <result name="error">/WEB-INF/content/error.jsp</result> <result name="success">/WEB-INF/content/welcome.jsp</result> </action> <!-- 讓用戶直接訪問該應(yīng)用時(shí)列出所有視圖頁面 --> <action name="*"> <result>/WEB-INF/content/{1}.jsp</result> </action> </package> </struts>
使用自動裝配
通過設(shè)置struts.objectFactory.spring.autoWire常量可以改變Spring插件額自動裝配策略,該常量可以接受如下幾個(gè)值:
Name:根據(jù)屬性名自動裝配。Spring插件會查找容器中全部Bean,找到其中id屬性與Action所需的業(yè)務(wù)邏輯組件同名的Bean,將該bean實(shí)例注入到Action實(shí)例。
Type:根據(jù)屬性類型自動裝配。Spring插件會查找容器中全部Bean,找出其類型恰好與Action所需的業(yè)務(wù)邏輯組件相同的Bean,將該Bean實(shí)例注入到Action實(shí)例。
Auto:Spring插件會自動檢測需要使用哪種自動裝配方式。
Constructor:與type類似,區(qū)別是constructor使用構(gòu)造器來構(gòu)造注入的所需參數(shù)而不是使用設(shè)值注入方式。
web.xml
<?xml version="1.0" encoding="GBK"?> <web-app xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" version="3.0"> <listener> <listener-class>org.springframework.web.context.ContextLoaderListener </listener-class> </listener> <filter> <filter-name>struts2</filter-name> <filter-class>org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter</filter-class> </filter> <filter-mapping> <filter-name>struts2</filter-name> <url-pattern>/*</url-pattern> </filter-mapping> </web-app>
applicationcontext.xml
<?xml version="1.0" encoding="GBK"?> <!-- Spring配置文件的根元素,使用spring-beans-3.0.xsd語義約束 --> <beans xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.springframework.org/schema/beans" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd"> <!-- 定義一個(gè)業(yè)務(wù)邏輯組件,實(shí)現(xiàn)類為MyServiceImp --> <bean id="ms" class="com.bh.service.impl.MyServiceImpl"/> </beans>
struts.xml
<?xml version="1.0" encoding="GBK"?> <!-- 指定Struts 2配置文件的DTD信息 --> <!DOCTYPE struts PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 2.1.7//EN" "http://struts.apache.org/dtds/struts-2.1.7.dtd"> <!-- Struts 2配置文件的根元素 --> <struts> <!-- 配置了系列常量 --> <constant name="struts.i18n.encoding" value="GBK"/> <constant name="struts.devMode" value="true"/> <package name="lee" extends="struts-default"> <!-- 定義處理用戶請求的Action --> <action name="loginPro" class="com.bh.action.LoginAction"> <!-- 為兩個(gè)邏輯視圖配置視圖頁面 --> <result name="error">/WEB-INF/content/error.jsp</result> <result name="success">/WEB-INF/content/welcome.jsp</result> </action> <!-- 讓用戶直接訪問該應(yīng)用時(shí)列出所有視圖頁面 --> <action name="*"> <result>/WEB-INF/content/{1}.jsp</result> </action> </package> </struts>
以上這篇Spring整合Struts2的兩種方法小結(jié)就是小編分享給大家的全部內(nèi)容了,希望能給大家一個(gè)參考,也希望大家多多支持億速云。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。