首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > Web前端 >

spring治理struts的配置

2012-10-21 
spring管理struts的配置在web.xmlcontext-paramparam-namecontextConfigLocation/param-nameparam-

spring管理struts的配置
在web.xml
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath:applicationContext.xml</param-value>
</context-param>
<listener>
<listener-class>
org.springframework.web.context.ContextLoaderListener
</listener-class>
</listener>

在config.xml
<action-mappings>
<action path="/login" type="org.springframework.web.struts.DelegatingActionProxy" scope="request"></action>
</action-mappings>
<message-resources parameter="com.neusoft.struts.ApplicationResources" />
<plug-in className="org.springframework.web.struts.ContextLoaderPlugIn">
<set-property property="contextConfigLocation"
value="classpath:applicationContext.xml" />
</plug-in>

在application.xml
<bean name="/login" class="com.neusoft.struts.LoginAction"></bean>

热点排行