概述
比如 在 actionContext.xml里配置了Service和Action以及DAO
- <bean id="userService" class="com.service.UserService">
- <property name="userDao" ref="userDao"/>
- </bean>
- <bean id="userAction" class="com.action.UserAction">
- <property name="userService" ref="userService"/>
- <property name="userName" value="abcabc"/>
- </bean>
这样的话 action里的service就会自动通过set注入了。。。
然后struts里配置
- <action name="loginAction" class="userAction" method="login">
- <result name="success">welcome.jsp</result>
- </action>
这样的话就是用spring里的通过set注入了service和userName
如果是
- <action name="loginAction" class="com.action.UserAction" method="login">
- <result name="success">welcome.jsp</result>
- </action>
那么是不会通过spring的set装配的 可以用struts里的param标签注入参数
最后
以上就是聪慧吐司为你收集整理的用Spring创建action中的service属性的全部内容,希望文章能够帮你解决用Spring创建action中的service属性所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复