在基于spring与hibernate整合的基础之上现在将struts2与spring整合,完成s2sh整合。
struts2的基本配置不变。但是在配置action的时候要注意,因为action要交给spring来管理。
那么就先在spring的applicationContext.xml中配置一个bean节点
<bean id="personAction" class="com.ty.spring2hibernate.controller.PersonAction" >
<property name="personService" ref="personService"></property>
</bean>
然后配置struts.xml文件
<action name="personAction_*" class=personAction"
method="{1}">
<result name="save">/WEB-INF/jsp/success.jsp</result>
</action>
通过以上简单的配置即完成了struts2和spring的整合。