我是靠谱客的博主 复杂蜗牛,最近开发中收集的这篇文章主要介绍线程中调用service方法出错,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

public class PnFileTGIComputeThread implements Runnable {
    @Resource
    private AppUsedService   appUsedService;
//    AppUsedService appUsedService = (AppUsedService) AllBean.getBean("appUsedService");
    public  String taskId;
    public  int  cityId;
    public PnFileTGIComputeThread(String name, int cityId){
        this.taskId = name;
        this.cityId = cityId;
    }
    @Override
    public void run() {
        try {
            this.appUsedService.doSaveAzTaskAppUsedInfoCity(Integer.valueOf(taskId),cityId);
        } catch (Exception e){
           e.printStackTrace();
        }
    }
}
新建了一个线程,然后再主线程中去实例化本线程,启动线程。DUG问题是,线程启动后,参数也都传过来了,但是通过注解来注入的service一直是null值。

 

老办法,翻了度娘的牌子,找到问题,在线程中为了线程安全,是防注入。没办法,要用到这个类啊。只能从bean工厂里拿个实例了

 

 

public class AllBean implements ApplicationContextAware{
   
    private static ApplicationContext applicationContext; 
   
    public void setApplicationContext(ApplicationContext context) {
       AllBean.applicationContext = context;
       }
   
    public static Object getBean(String name){
         return applicationContext.getBean(name);
    }
    
     public static ApplicationContext getApplicationContext() {  
          return applicationContext;  
      }  
}
getbean方法,获取上下文中的bean, 不过呢要有点问题,这个AllBean类需要在在Bean工厂中注册下

 

 

<bean id="allBean" class="xxxxx.AllBean"  />
  想要啥东西,现在都可以直接去getBean,例如:

 

 

AppUsedService appUsedService = (AppUsedService) AllBean.getBean("appUsedService");
好的,线程正常启动了。

转载于:https://www.cnblogs.com/nankeyimengningchenlun/p/9186207.html

最后

以上就是复杂蜗牛为你收集整理的线程中调用service方法出错的全部内容,希望文章能够帮你解决线程中调用service方法出错所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(50)

评论列表共有 0 条评论

立即
投稿
返回
顶部