Sturts2整合Spring一般步骤

步骤:
1.
导入Spring的包和struts2-spring-plugin-2.0.11.2.jar

2.
web.xml中加

Xml代码   收藏代码
  1. <listener>  
  2.     <listener-class>  
  3.         org.springframework.web.context.ContextLoaderListener  
  4.     </listener-class>  
  5. </listener>  

Xml代码   收藏代码
  1. <context-param>  
  2.     <param-name>contextConfigLocation</param-name>  
  3.     <param-value>/WEB-INF/classes/applicationContext.xml</param-value>  
  4. </context-param>  


3.


strust.xml

中<struts>加


Xml代码   收藏代码
  1. <constant name="struts.objectFactory"   
  2.     value="org.apache.struts2.spring.StrutsSpringObjectFactory"/>  


4.


strust.xml


Xml代码   收藏代码
  1. <action name="list" method="list" class="messageAction">  
  2.     <result>/list.jsp</result>  
  3. </action>  


5.


applicationContext.xml


Xml代码   收藏代码
  1. <bean id="messageAction" class="action.MessageAction" scope="prototype">  
  2.     <property name="messageService">  
  3.         <ref bean="messageService" />  
  4.     </property>  
  5. </bean>  

其中<action> 中的

class

属性必须和<bean> 中的

id

属性一致,<bean> 中的class属性才是真正的类名。

你可能感兴趣的:(spring,struts2)