亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

SpringBoot多線程處理任務無法@Autowired注入bean怎么辦

發布時間:2021-06-28 15:10:37 來源:億速云 閱讀:175 作者:小新 欄目:編程語言

這篇文章主要介紹了SpringBoot多線程處理任務無法@Autowired注入bean怎么辦,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。

在多線程處理問題時,無法通過@Autowired注入bean,報空指針異常,

在線程中為了線程安全,是防注入的,如果要用到這個類,只能從bean工廠里拿個實例。

解決方法如下:

1.創建一個工具類代碼:

package com.hqgd.pms.common;

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



@Component
public class SpringContextUtil implements ApplicationContextAware {
  /**
   * 上下文對象實例
   */
  private static ApplicationContext applicationContext;

  @Override
  public void setApplicationContext(ApplicationContext applicationContext) throws BeansException {
    SpringContextUtil.applicationContext = applicationContext;
  }

  /**
   * 獲取applicationContext
   *
   * @return
   */
  public static ApplicationContext getApplicationContext() {
    return applicationContext;
  }

  /**
   * 通過name獲取 Bean.
   *
   * @param name
   * @return
   */
  public static Object getBean(String name) {
    return getApplicationContext().getBean(name);
  }

  /**
   * 通過class獲取Bean.
   *
   * @param clazz
   * @param <T>
   * @return
   */
  public static <T> T getBean(Class<T> clazz) {
    return getApplicationContext().getBean(clazz);
  }

  /**
   * 通過name,以及Clazz返回指定的Bean
   *
   * @param name
   * @param clazz
   * @param <T>
   * @return
   */
  public static <T> T getBean(String name, Class<T> clazz) {
    return getApplicationContext().getBean(name, clazz);
  }
}

2.使用方法

@Slf4j
@Service
public class SerialPortService {
  public static SerialPort mSerialport = null;
//  private SimpMessagingTemplate simpMessage;
  private DataAcquisitionService das;
  private SystemService systemService;
  private SysParamMapper sysParamMapper;

  public SerialPortService() {
    this.das = SpringContextUtil.getBean(DataAcquisitionService.class);
    this.systemService = SpringContextUtil.getBean(SystemService.class);
    this.sysParamMapper = SpringContextUtil.getBean(SysParamMapper.class);
  }

}

感謝你能夠認真閱讀完這篇文章,希望小編分享的“SpringBoot多線程處理任務無法@Autowired注入bean怎么辦”這篇文章對大家有幫助,同時也希望大家多多支持億速云,關注億速云行業資訊頻道,更多相關知識等著你來學習!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

塘沽区| 唐河县| 章丘市| 平塘县| 信阳市| 铜梁县| 商丘市| 准格尔旗| 湖州市| 泾阳县| 日照市| 时尚| 新乡县| 台南县| 怀宁县| 永寿县| 铜陵市| 巴南区| 佛坪县| 板桥市| 兴国县| 金乡县| 家居| 泰顺县| 永兴县| 永善县| 商都县| 涞源县| 万全县| 遵化市| 昂仁县| 武邑县| 马关县| 樟树市| 尚志市| 莎车县| 弥渡县| 来安县| 西乡县| 苏州市| 楚雄市|