欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Sturts2整合Spring一般步骤

程序员文章站 2022-07-15 20:42:10
...
步骤:
1.
导入Spring的包和struts2-spring-plugin-2.0.11.2.jar

2.
web.xml中加
<listener>
	<listener-class>
		org.springframework.web.context.ContextLoaderListener
	</listener-class>
</listener>

<context-param>
	<param-name>contextConfigLocation</param-name>
	<param-value>/WEB-INF/classes/applicationContext.xml</param-value>
</context-param>


3.
strust.xml中<struts>加
<constant name="struts.objectFactory" 
	value="org.apache.struts2.spring.StrutsSpringObjectFactory"/>


4.
strust.xml
<action name="list" method="list" class="messageAction">
	<result>/list.jsp</result>
</action>


5.
applicationContext.xml
<bean id="messageAction" class="action.MessageAction" scope="prototype">
	<property name="messageService">
		<ref bean="messageService" />
	</property>
</bean>

其中<action> 中的class属性必须和<bean> 中的id属性一致,<bean> 中的class属性才是真正的类名。