溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

SpringBoot怎么在線程中獲取@Service?Bean類

發(fā)布時(shí)間:2022-02-27 09:48:10 來源:億速云 閱讀:420 作者:小新 欄目:開發(fā)技術(shù)

這篇文章主要為大家展示了“SpringBoot怎么在線程中獲取@Service Bean類”,內(nèi)容簡(jiǎn)而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領(lǐng)大家一起研究并學(xué)習(xí)一下“SpringBoot怎么在線程中獲取@Service Bean類”這篇文章吧。

如何在線程中獲取@Service Bean類

這個(gè)適用于沒有Spring配置文件的Springboot項(xiàng)目中,有配置文件的話取bean就方便多了。

下圖是我用@Service注解聲明的一個(gè)Mybatis Mapper Bean,平常在Springboot掃描配置下的類直接用

@Autowired注解依賴注入。

SpringBoot怎么在線程中獲取@Service?Bean類

SpringBoot怎么在線程中獲取@Service?Bean類

我現(xiàn)在需要在線程中使用,然而Springboot自然而然只能掃描到自己的東西 ,線程實(shí)現(xiàn)的Runnable接口,

我們現(xiàn)在開始解決問題

1、首先創(chuàng)建一個(gè)配置類繼承ApplicationContextAware,取得ApplicationContext。

SpringBoot怎么在線程中獲取@Service?Bean類

利用里面的getBean方法取得你想要的Bean類。

SpringBoot怎么在線程中獲取@Service?Bean類

這樣你就能在線程中得到你要的Bean類了。挺坑的!??!

多線程中獲取bean對(duì)象

注:多線程場(chǎng)景下,使用默認(rèn)的spring自動(dòng)裝配無法獲取bean對(duì)象,此方案可以從context上下文中直接獲取bean。

創(chuàng)建類

實(shí)現(xiàn)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;
/**
 * Created with IntelliJ IDEA.
 * Date: 2018/1/11 0011
 * Time: 13:20
 * To change this template use File | Settings | File Templates.
 */
@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);
    }
}

多線程中的調(diào)用方式

.method()是bean對(duì)象的方法名稱

ApplicationContextProvider.getBean(AccountAssetService.class).method()

以上是“SpringBoot怎么在線程中獲取@Service Bean類”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對(duì)大家有所幫助,如果還想學(xué)習(xí)更多知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI