1. 程式人生 > >Spring啟動後獲取所有擁有特定註解的Bean

Spring啟動後獲取所有擁有特定註解的Bean

最近專案中遇到一個業務場景,就是在Spring容器啟動後獲取所有的Bean中實現了一個特定介面的物件,第一個想到的是ApplicationContextAware,在setApplicationContext中去通過ctx獲取所有的bean,後來發現好像邏輯不對,這個方法不是在所有bean初始化完成後實現的,後來試了一下看看有沒有什麼Listener之類的,發現了好東西ApplicationListener,然後百度一下ApplicationListener用法,原來有一大堆例子,我也記錄一下我的例子好了。

很簡單,只要實現ApplicationListener<ContextRefreshedEvent>介面,然後把實現類進行@Component即可,程式碼如下:

Java程式碼  收藏程式碼
  1. <span style="font-size: 16px;">@Component  
  2. public class ContextRefreshedListener implements ApplicationListener<ContextRefreshedEvent> {  
  3.     @Override  
  4.     public void onApplicationEvent(ContextRefreshedEvent event) {  
  5.         // 根容器為Spring容器  
  6.         if(event.getApplicationContext().getParent()==null
    ){  
  7.             Map<String,Object> beans = event.getApplicationContext().getBeansWithAnnotation(IMobile.class);  
  8.             for(Object bean:beans.values()){  
  9.                 System.err.println(bean==null?"null":bean.getClass().getName());  
  10.             }  
  11.             System.err.println("=====ContextRefreshedEvent====="
    +event.getSource().getClass().getName());  
  12.         }  
  13.     }  
  14. }</span>  

 其中,通過event.getApplicationContext().getBeansWithAnnotation獲取到所有擁有特定註解的Beans集合,然後遍歷所有bean實現業務場景。

總結思考:這樣的功能可以實現系統引數的初始化,獲取系統中所有介面服務清單等一系列需要在Spring啟動後初始化的功能。

延生一下:除了以上啟動後事件外,還有其他三個事件

Closed在關閉容器的時候呼叫,

Started理論上在容器啟動的時候呼叫,

Stopped理論上在容器關閉的時候呼叫。

我通過TomcatServer進行啟動停止,只看到了Refreshed和Closed,不知道為啥,有空再繼續研究

轉載於:http://fanyc.iteye.com/blog/2224809