Java获取接口所有实现类的方式
有时候,根据业务逻辑的需求,我们想要获取到某个接口的所有实现类。在这里大致介绍两种方式:
1.借助Spring容器实现
Spring作为一个容器,管理着一个项目中所有经过配置的Java类(xml配置文件或Annotation方式)。如果某个接口的所有实现类均被Spring托管了,那么通过Spring就可以很简单的返回这些实现类。
1 import org.springframework.beans.BeansException; 2 import org.springframework.context.ApplicationContext; 3 import org.springframework.context.ApplicationContextAware; 4 import org.springframework.stereotype.Component; 5 6 @Component 7 public class ServiceLocator implements ApplicationContextAware{ 8 /** 9 * 用于保存接口实现类名及对应的类 10 */ 11 private Map<String, IService> map; 12 13 /** 14 * 获取应用上下文并获取相应的接口实现类 15 * @param applicationContext 16 * @throws BeansException 17 */ 18 @Override 19 public void setApplicationContext(ApplicationContext applicationContext) throws BeansException { 20 //根据接口类型返回相应的所有bean 21 Map<String, IService> map = applicationContext.getBeansOfType(IService.class); 22 } 23 24 public Map<String, IService> getMap() { 25 return map; 26 } 27 }
2.借助ServiceLoader类
ServiceLoader是JDK自带的一个类加载器,位于java.util包当中,作为 A simple service-provider loading facility. 具体使用方式如下:
1.在META-INF/services/目录下用你的接口全路径名称命名一个文件(不加后缀),然后在该文件中一行一个添加你的接口实现类的全路径名。
2.通过load方法来加载出所有的接口实现类
1 ServiceLoader<MyInterface> loader = ServiceLoader.load(MyInterface.class);
在这里load方法的返回值是一个迭代器,用这个迭代器可以遍历出所有的接口实现类。
总结
以上两种方式,实现的功能都是一样的,实现方式不同,底层用的技术一样的,都是反射。至于选择哪一种,我建议如果项目中的接口实现类都被Spring托管了,那当然是直接用Spring了。如果没有用到Spring的话,那就用ServiceLoader,这个肯定是没有问题的。