Struts+spring的例子2(源自北京尚学堂教程)
<property name="userManager" ref="userManager"/>
</bean>
* 必须使用name属性,name属性值必须和struts-config.xml文件中<action>标签的path属性值一致
* 必须注入业务逻辑对象
* 建议将scope设置为prototype,这样就避免了struts Action的线程安全问题
?
WEB-INF下
?
web.xml
?
struts-config.xml
?WebContent或WebRoot下
index.jsp
??
login.jsp
?success.jsp
?src下
applicationContext-actions.xml
?
applicationContext-beans.xml
??