Spring boot 手动注入bean

Spring项目中,我们可能用到多线程,但是新创建的线程中,是不能自动注入bean/service的。这就需要我们手动去注入bean

网上说的方法大概有两三种,我这只列举一种我验证通过的。

本文项目框架Spring Boot --JHipster

1.首先需要写一个手动获取bean的工具类,原理,在项目启动时获取到spring上下文,从上下文中获取到bean。

import org.springframework.beans.BeansException;
import org.springframework.context.ApplicationContext;
import org.springframework.context.ApplicationContextAware;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.stereotype.Component;

/**
 * 直接通过Spring 上下文获取SpringBean,用于多线程环境
 * by lida @20170629
 */
@Component
public class SpringContextUtil implements ApplicationContextAware {

    // Spring应用上下文环境
    private static ApplicationContext applicationContext;

    /**
     * 实现ApplicationContextAware接口的回调方法,设置上下文环境
     */
    public void setApplicationContext(ApplicationContext applicationContext)
        throws BeansException {
        SpringContextUtil.applicationContext = applicationContext;
    }

    public static ApplicationContext getApplicationContext() {
        return applicationContext;
    }

    /**
     * 获取对象 这里重写了bean方法,起主要作用
     * example: getBean("userService")//注意: 类名首字母一定要小写!
     */
    public static Object getBean(String beanId) throws BeansException {
        return applicationContext.getBean(beanId);
    }
}

2.在线程类中手动获取bean/service


import com.hi.base.service.CalendarService;

public class SdReleaseReview implements Runnable {
    private CalendarService calendarService;
    public SdReleaseReview() {
        this.calendarService=(CalendarService)SpringContextUtil.getBean("calendarService");
    }

    @Override
    public void run(){
        try {
            ...
            FactoryCalendar factoryCalendar = calendarService.getByExistDate("2000", today);
            ...

        }catch (Exception e){
            ...
        }
    }
}


  • 2
    点赞
  • 3
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值