SpringBoot如何在线程中获取@ServiceBean类
短信预约 -IT技能 免费直播动态提醒
如何在线程中获取@Service Bean类
这个适用于没有Spring配置文件的Springboot项目中,有配置文件的话取bean就方便多了。
下图是我用@Service注解声明的一个Mybatis Mapper Bean,平常在Springboot扫描配置下的类直接用
@Autowired注解依赖注入。
我现在需要在线程中使用,然而Springboot自然而然只能扫描到自己的东西 ,线程实现的Runnable接口,
我们现在开始解决问题
1、首先创建一个配置类继承ApplicationContextAware,取得ApplicationContext。
利用里面的getBean方法取得你想要的Bean类。
这样你就能在线程中得到你要的Bean类了。挺坑的!!!
多线程中获取bean对象
注:多线程场景下,使用默认的spring自动装配无法获取bean对象,此方案可以从context上下文中直接获取bean。
创建类
实现ApplicationContextAware接口;
package com.bond.match.utils;
import org.springframework.beans.BeansException;
import org.springframework.context.ApplicationContext;
import org.springframework.context.ApplicationContextAware;
import org.springframework.stereotype.Component;
@Component
public class ApplicationContextProvider implements ApplicationContextAware {
private static ApplicationContext context;
private ApplicationContextProvider(){}
@Override
public void setApplicationContext(ApplicationContext applicationContext) throws BeansException {
context = applicationContext;
}
public static <T> T getBean(Class<T> aClass){
return context.getBean(aClass);
}
}
多线程中的调用方式
.method()是bean对象的方法名称
ApplicationContextProvider.getBean(AccountAssetService.class).method()
以上为个人经验,希望能给大家一个参考,也希望大家多多支持编程网。
免责声明:
① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。
② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341