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

溫馨提示×

溫馨提示×

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

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

springboot中怎么利用上下文獲取bean

發布時間:2021-07-29 14:07:22 來源:億速云 閱讀:488 作者:Leah 欄目:編程語言

本篇文章給大家分享的是有關springboot中怎么利用上下文獲取bean,小編覺得挺實用的,因此分享給大家學習,希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。

問題

在使用springboot開發項目過程中,有些時候可能出現說會有在spring容器加載前就需要注入bean的類,這個時候如果直接使用@Autowire注解,則會出現控制針異常!

解決辦法

如下:

創建一個springContextUtil類

package cn.eangaie.appcloud.util;import org.springframework.context.ApplicationContext;public class SpringContextUtil {  private static ApplicationContext applicationContext;  //獲取上下文  public static ApplicationContext getApplicationContext() {    return applicationContext;  }  //設置上下文  public static void setApplicationContext(ApplicationContext applicationContext) {    SpringContextUtil.applicationContext = applicationContext;  }  //通過名字獲取上下文中的bean  public static Object getBean(String name){    return applicationContext.getBean(name);  }  //通過類型獲取上下文中的bean  public static Object getBean(Class<?> requiredType){    return applicationContext.getBean(requiredType);  }}

在AppcloudApplication.class 啟動類里邊,將初始化該類,并將context注入進去

public class AppcloudApplication {  public static void main(String[] args) {    ApplicationContext context=SpringApplication.run(AppcloudApplication.class, args);    SpringContextUtil.setApplicationContext(context);  }}

在需要注入bean的地方,使用getBean(bean名稱)的方式獲取

MessageTemplateController messageTemplateController= (MessageTemplateController) SpringContextUtil.getBean("messageTemplateController");

以上就是springboot中怎么利用上下文獲取bean,小編相信有部分知識點可能是我們日常工作會見到或用到的。希望你能通過這篇文章學到更多知識。更多詳情敬請關注億速云行業資訊頻道。

向AI問一下細節

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

AI

顺平县| 图木舒克市| 柳河县| 郑州市| 天水市| 顺平县| 嘉义市| 湖北省| 宜都市| 安图县| 新和县| 阳朔县| 通许县| 观塘区| 滨州市| 阜平县| 万年县| 宣汉县| 天台县| 南华县| 兰坪| 靖宇县| 东安县| 博乐市| 铅山县| 咸丰县| 永德县| 英吉沙县| 沁源县| 海门市| 泌阳县| 信宜市| 于都县| 蒙山县| 灌云县| 临江市| 石嘴山市| SHOW| 德钦县| 海阳市| 河津市|