您好,登錄后才能下訂單哦!
本篇文章給大家分享的是有關Java中怎么獲取接口的所有實現類,小編覺得挺實用的,因此分享給大家學習,希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。
1.借助Spring容器實現
Spring作為一個容器,管理著一個項目中所有經過配置的Java類(xml配置文件或Annotation方式)。如果某個接口的所有實現類均被Spring托管了,那么通過Spring就可以很簡單的返回這些實現類。
import org.springframework.beans.BeansException;import org.springframework.context.ApplicationContext;import org.springframework.context.ApplicationContextAware;import org.springframework.stereotype.Component;@Componentpublic class ServiceLocator implements ApplicationContextAware{ /** * 用于保存接口實現類名及對應的類 */ private Map<String, IService> map; /** * 獲取應用上下文并獲取相應的接口實現類 * @param applicationContext * @throws BeansException */ @Override public void setApplicationContext(ApplicationContext applicationContext) throws BeansException { //根據接口類型返回相應的所有bean Map<String, IService> map = applicationContext.getBeansOfType(IService.class); } public Map<String, IService> getMap() { return map; }}
2.借助ServiceLoader類
ServiceLoader是JDK自帶的一個類加載器,位于java.util包當中,作為 A simple service-provider loading facility. 具體使用方式如下:
1.在META-INF/services/目錄下用你的接口全路徑名稱命名一個文件(不加后綴),然后在該文件中一行一個添加你的接口實現類的全路徑名。
2.通過load方法來加載出所有的接口實現類
ServiceLoader<MyInterface> loader = ServiceLoader.load(MyInterface.class);
在這里load方法的返回值是一個迭代器,用這個迭代器可以遍歷出所有的接口實現類。
以上就是Java中怎么獲取接口的所有實現類,小編相信有部分知識點可能是我們日常工作會見到或用到的。希望你能通過這篇文章學到更多知識。更多詳情敬請關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。