spring set注入 空指针问题
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了spring set注入 空指针问题相关的知识,希望对你有一定的参考价值。
java struts2 spring框架,在通过spring set向DAO 注入的过程中,通过ApplicationContext context = new FileSystemXmlApplicationContext("WebRoot/WEB-INF/applicationContext.xml");PersonServiceImp personRepository = (PersonServiceImp)context.getBean("personService"); 方式可获取对象,然采用struts2 通过页面.action的形式却是空指针,dao中Template为空,applicationContext.xml 代码如下:<mongo:mongo host="localhost" port="27017"></mongo:mongo>
<bean id="mongoTemplate"
class="org.springframework.data.document.mongodb.MongoTemplate">
<constructor-arg ref="mongo" />
<constructor-arg name="databaseName" value="test" />
</bean>
<context:annotation-config />
<bean id="personRepository" class="com.ft.buss.PersonRepository">
<property name="mongoTemplate" ref="mongoTemplate"></property>
</bean>
<bean id="personService" class="com.ft.services.PersonServiceImp">
<property name="mongoTemplate" ref="mongoTemplate"></property>
</bean>
<bean id="personListAction" class="com.ft.action.PersonListAction">
<property name="personService" ref="personService"></property>
</bean>
<bean id="mongoTemplate"
class="org.springframework.data.document.mongodb.MongoTemplate">
<constructor-arg ref="mongo" />
<constructor-arg name="databaseName" value="test" />
</bean>
mongoTemplate 这个是constructor 注入方式?
确认下你的数据源配置??
org.springframework.data.document.mongodb.MongoTemplate 是spring 的?这个东东没用过, 不过, 你确认下MongoTemplate 的数据源是怎么配置的(mongo?...)
<constructor-arg ref="mongo" />
<constructor-arg name="databaseName" value="test" /> 参考技术A struts2的action里有没有
private personService ps;
public void setPersonService(personService ps)
this.ps=ps;
追问
有啊,");PersonServiceImp personRepository = (PersonServiceImp)context.getBean("personListAction"); 这么测试也能获取对象 就是一用action就空指针了 。Action里的private personService ps;还得这样personService ps = new PersonServiceImp();否则即使有Set方法 也是空指针 ,这样也不符合spring注入原理啊 而PersonServiceImp里的mongoTemplate有set也是空
外置 tomcat启动Spring Boot程序模式下解决过滤器注入bean的空指针问题
在上一篇博文中,一般是可以解决过滤器注入bean的空指针问题的,但我们跑在服务器上的Spring程序一般是使用外置tomcat来启动的,
1 public static void main(String[] args) throws InterruptedException { 2 ApplicationContext context = SpringApplication.run(Application.class, args); 3 SpringContextUtil.setApplicationContext(context); 4 }
这与我们在ide上直接run Application.java是不一样的,也会发生空指针异常,因为直接启动tomcat的方式上面的第三行没有执行,context注入失败。因此我们需要换一种Spring context的注入方式
1 @Component 2 public class SpringContextUtil implements ApplicationContextAware { 3 private static ApplicationContext applicationContext; 4 public void setApplicationContext(ApplicationContext applicationContext) throws BeansException { 5 SpringContextUtil.applicationContext = applicationContext; 6 } 7 public static ApplicationContext getApplicationContext() { 8 return applicationContext; 9 } 10 11 //通过名字获取上下文中的bean 12 public static Object getBean(String name){ 13 return applicationContext.getBean(name); 14 } 15 16 //通过类型获取上下文中的bean 17 public static Object getBean(Class<?> requiredType){ 18 return applicationContext.getBean(requiredType); 19 } 20 }
就可以正常使用Bean组件了,经验证 问题得以解决
以上是关于spring set注入 空指针问题的主要内容,如果未能解决你的问题,请参考以下文章
SpringBug记录 -- java.lang.NullPointerException在Spring单元测试中遇到的空指针异常及依赖注入异常总结