我是靠谱客的博主 执着小蘑菇,最近开发中收集的这篇文章主要介绍ssh中spring向Action类@Autowired注入service空指针问题解决,觉得挺不错的,现在分享给大家,希望可以做个参考。
概述
使用servlet注入时,上一篇博文已经解释了,但是在使用ssh框架时,就不能用同样的方法了。
下面是解决方案:
(1)pom.xml文件中有没有引入struts2-spring-plugin包
<!-- https://mvnrepository.com/artifact/org.apache.struts/struts2-spring-plugin -->
<dependency>
<groupId>org.apache.struts</groupId>
<artifactId>struts2-spring-plugin</artifactId>
<version>2.5.18</version>
</dependency>
(2)struts.xml文件有没有加入
<constant name="struts.objectFactory" value="spring" />
(3)web.xml文件中有没有添加监听器和context-param
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath:applicationContext.xml</param-value>
</context-param>
最后
以上就是执着小蘑菇为你收集整理的ssh中spring向Action类@Autowired注入service空指针问题解决的全部内容,希望文章能够帮你解决ssh中spring向Action类@Autowired注入service空指针问题解决所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复