使用注解的方式向线程中注入JavaBean,空指针的问题

编程

1. 把线程设置为主程序的内部类 
这也是一种简单的方法,主程序在web容器加载时肯定是可以注入Spring bean的,那么将线程的实现类放在主程序的类中便可以“共享”Spring的bean,(当然,这需要提前把线程中的需要用到的bean定义在外层的类中)。 
具体操作方法,就是将生成线程的线程池定义在主程序的类中,每个线程的实现类作为内部类也定义在主程序中。这个方法自己试过,是可以的。 


2. 使用静态方法直接取的容器中的spring对象 
这个方法稍微专业点,可以线程的分发与线程的实现分离出来。在每个线程中使用静态方法直接取的容器中的spring对象。 
使用静态方法获取容器中的spring对象可以参见 


但一定要记住,你定义这个工具类也要配置成spring中的bean! 

下面贴一下我在使用时的代码 
(1)定义工具类 

publicclass SpringApplicationContextHolder implements ApplicationContextAware {  

privatestatic ApplicationContext context;

@Override

publicvoid setApplicationContext(ApplicationContext context) throws BeansException {

SpringApplicationContextHolder.context = context;

}

publicstatic Object getSpringBean(String beanName) {

notEmpty(beanName, "bean name is required");

return context==null?null:context.getBean(beanName);

}

publicstatic String[] getBeanDefinitionNames() {

return context.getBeanDefinitionNames();

}

在Spring中注册工具类的bean 

<bean class="com.xxx.spring.SpringApplicationContextHolder"/>

线程中获取bean 

UserRepo user = (UserRepo) SpringApplicationContextHolder.getSpringBean("userRepo");

 

以上是 使用注解的方式向线程中注入JavaBean,空指针的问题 的全部内容, 来源链接: utcz.com/z/516620.html

回到顶部