spring如何動態(tài)指定具體實現(xiàn)類
在寫接口實現(xiàn)時,有時會有多個實現(xiàn)類。這篇文章介紹在調用時通過傳入字符串來指定具體的實現(xiàn)類。
一.接口與實現(xiàn)類:
// 接口 public interface ServiceInterface { public void method(); } // 具體兩個實現(xiàn)類 @Service("aService") public class AServiceImpl implements ServiceInterface { @Override public void method() { System.out.println("the impl is A"); } @Override public String toString() { return "A"; } } @Service("bService") public class BServiceImpl implements ServiceInterface { @Override public void method() { System.out.println("the impl is B"); } @Override public String toString() { return "B"; } }
在實現(xiàn)類中重寫了toString() 方法,可以自定義字符串,當調用時傳入指定的字符串就能獲取到相應的bean。
二.register書寫:
@Service("register") public class Register implements InitializingBean, ApplicationContextAware { private Map<String, ServiceInterface> serviceImplMap = new HashMap<>(); private ApplicationContext applicationContext; // 獲取spring的上下文 @Override public void setApplicationContext(ApplicationContext applicationContext) throws BeansException { this.applicationContext = applicationContext; } // 獲取接口實現(xiàn)類的所有bean,并按自己定的規(guī)則放入map中 @Override public void afterPropertiesSet() throws Exception { Map<String, ServiceInterface> beanMap = applicationContext.getBeansOfType(ServiceInterface.class); // 以下代碼是將bean按照自己定的規(guī)則放入map中,這里我的規(guī)則是key:service.toString();value:bean // 調用時,參數(shù)傳入service.toString()的具體字符串就能獲取到相應的bean // 此處也可以不做以下的操作,直接使用beanMap,在調用時,傳入bean的名稱 for (ServiceInterface serviceImpl : beanMap.values()) { serviceImplMap.put(serviceImpl.toString(), serviceImpl); } } public ServiceInterface getServiceImpl(String name) { return serviceImplMap.get(name); } }
三.測試類:
@Resource Register register; @Test public void testService() { ServiceInterface service = register.getServiceImpl("A"); service.method(); ServiceInterface service2 = register.getServiceImpl("B"); service2.method(); }
運行結果,如圖:
備注:
在spring加載后,獲取applicationContext的方法:
實現(xiàn)ApplicationContextAware接口的Bean,在Bean加載的過程中可以獲取到Spring的ApplicationContext,這個尤其重要,ApplicationContext是Spring應用上下文,從ApplicationContext中可以獲取包括任意的Bean在內的大量Spring容器內容和信息
@Component("informerRegistry") public final class InformerRegistry implements ApplicationContextAware{ private ApplicationContext applicationContext; @Override public void setApplicationContext(ApplicationContext applicationContext) throws BeansException { this.applicationContext = applicationContext; } }
關于spring常用bean擴展接口可參考:http://www.cnblogs.com/xrq730/p/5721366.html
注意:
使用以下方法獲取spring上下文時,會啟動spring。多次寫以下方法,就會啟動多個spring容器
以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持腳本之家。
相關文章
Java之Error與Exception的區(qū)別案例詳解
這篇文章主要介紹了Java之Error與Exception的區(qū)別案例詳解,本篇文章通過簡要的案例,講解了該項技術的了解與使用,以下就是詳細內容,需要的朋友可以參考下2021-09-09spring boot使用sharding jdbc的配置方式
這篇文章主要介紹了spring boot使用sharding jdbc的配置方式,小編覺得挺不錯的,現(xiàn)在分享給大家,也給大家做個參考。一起跟隨小編過來看看吧2017-12-12Spring Cloud Config Client超時及重試示例詳解
這篇文章主要給大家介紹了關于Spring Cloud Config Client超時及重試的相關資料,文中通過示例代碼介紹的非常詳細,對大家的學習或者工作具有一定的參考學習價值,需要的朋友們下面來一起學習學習吧2018-05-05