您好,登錄后才能下訂單哦!
這篇文章將為大家詳細講解有關Spring中動態注入Bean的方法,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。
一、基于標注的方式注入實例
需要在Bean初始化之時,其依賴的對象必須初始化完畢。如果被注入的對象初始化晚于當前對象,則注入的對象將為null.
1.1 @Autowired
按照類型來加載Spring管理的Bean。默認情況下要求其Bean必須存在。 如果其Bean為null,則可以設置其required屬性為false。具體的詳情,可以參照源代碼:
@Target({ElementType.CONSTRUCTOR, ElementType.METHOD, ElementType.PARAMETER, ElementType.FIELD, ElementType.ANNOTATION_TYPE}) @Retention(RetentionPolicy.RUNTIME) @Documentedpublic @interface Autowired { /** * Declares whether the annotated dependency is required. * Defaults to {@code true}. */ boolean required() default true; }
如果需要基于命令來注入Bean,則需要使用@Qualifier來標注名稱,代碼示例如下:
@Autwired @Qualifier("beanName") private BeanType beanObj;
應用范圍: 變量, setter方法和構造函數之上。
來源: Spring框架
1.2 @Inject
由javax.inject.Inject提供,基于類型進行自動裝配,如果需要按照名稱進行轉配,則需要配合使用@Named。這個使用方式和Spring框架提供的@Autowired非常類似。
應用范圍: 變量、setter方法,構造函數
來源: JSR330規范 javax擴展包
代碼示例:
@Inject @Named("beanName") private BeanType bean;
1.3 @Resource
默認是按照名稱來裝配注入的,只有當找不到與名稱匹配的bean才會按照類型來裝配注入。其有JDK 1.6之后提供的。
應用范圍:可以應用到變量和setter方法之上
來源: JDK 1.6之后提供
代碼使用示例:
@Resource(name="mybeanName") private BeanType bean;
二、動態注入的方式
思路: 基于ApplicationContextAware來獲取ApplicationContext的引用,然后基于ApplicationContext進行對象的動態獲取。
實現代碼如下:
@Component public class SpringContextUtil implements ApplicationContextAware { // Spring應用上下文環境 private static ApplicationContext applicationContext; /* * 實現ApplicationContextAware接口的回調方法,設置上下文環境 * * @param applicationContext */ public void setApplicationContext(ApplicationContext applicationContext) { SpringContextUtil.applicationContext = applicationContext; } /** * @return ApplicationContext */ public static ApplicationContext getApplicationContext() { return applicationContext; } /** * 獲取對象 * * @param name * @return Object * @throws BeansException */ public static Object getBean(String name) throws BeansException { return applicationContext.getBean(name); } }
之后就可以直接在代碼中動態獲取所需要的Bean實例了:
BeanType bean = SpringContextUtil.getBean("beanName")
關于“Spring中動態注入Bean的方法”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。