• 接口多实现


    1、定义一个接口

    public interface IPrint {
    
        void print(String msg);
    }
    
    • 1
    • 2
    • 3
    • 4

    2、实现这个接口

    @Component
    public class LogPrint implements IPrint {
    
        @Override
        public void print(String msg) {
            System.out.println("logPrint print: " + msg);
        }
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8

    如果只有这一个实现类,使用方式很灵活,如下:

    @RestController
    @RequestMapping("/api/{edition}/page")
    public class MyPageHelperController {
    
        @Autowired
        private IPrint logPrint;//因为该IPrint只有一个实现,这里的logPrint可以用任何字符串替代,如下:
        //@Autowired
        //private IPrint abc;
    
        @GetMapping("/myPage")
        @ResponseBody
        public Map<Object, Object> expenseStatement(HttpServletRequest request, HttpServletResponse response)  {
            logPrint.print("zjg");
            return new ConcurrentHashMap<>();
        }
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16

    3、接口的另外一个实现类

    @Component
    public class ConsolePrint implements IPrint {
    
        @Override
        public void print(String msg) {
            System.out.println("console print: " + msg);
        }
    
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9

    IPrint该接口有多个实现类,此时再使用的时候,就要表明具体使用的是哪一个实现,如下:

    @RestController
    @RequestMapping("/api/{edition}/page")
    public class MyPageHelperController {
    
        @Autowired
        private IPrint abc;
    
        @GetMapping("/myPage")
        @ResponseBody
        public Map<Object, Object> expenseStatement(HttpServletRequest request, HttpServletResponse response)  {
    
            abc.print("zjg");
    
            return new ConcurrentHashMap<>();
        }
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16

    运行上述代码,会抛出如下异常:

    Description:
    
    Field abc in com.example.demo.controller.MyPageHelperController required a single bean, but 2 were found:
    	- consolePrint: defined in file [/Users/zhangjiguo/workspace/backup/demo/target/classes/com/example/demo/service/impl/ConsolePrint.class]
    	- logPrint: defined in file [/Users/zhangjiguo/workspace/backup/demo/target/classes/com/example/demo/service/impl/LogPrint.class]
    
    
    Action:
    
    Consider marking one of the beans as @Primary, updating the consumer to accept multiple beans, or using @Qualifier to identify the bean that should be consumed
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11

    正确的做法是:

    @RestController
    @RequestMapping("/api/{edition}/page")
    public class MyPageHelperController {
    
        @Autowired
        private IPrint logPrint / consolePrint; //这里的logPrint / consolePrint的名字就是实现类的bean的名字,所以可以正确引入
    
        @GetMapping("/myPage")
        @ResponseBody
        public Map<Object, Object> expenseStatement(HttpServletRequest request, HttpServletResponse response)  {
    
            logPrint.print("zjg");
    
            return new ConcurrentHashMap<>();
        }
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16

    或者可以这样:

    @RestController
    @RequestMapping("/api/{edition}/page")
    public class MyPageHelperController {
    
        @Autowired
        private ConsolePrint abc;
        //@Autowired
        //private LogPrint abc;
        
    
        @GetMapping("/myPage")
        @ResponseBody
        public Map<Object, Object> expenseStatement(HttpServletRequest request, HttpServletResponse response)  {
    
            abc.print("zjg");
    
            return new ConcurrentHashMap<>();
        }
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19

    上述情况,不管用了哪种方式,都是静态的绑定了IPrint该接口的具体实现类完成的,如何能做到在接口多实现的情况下,可以实现动态切换呢,如下:

    我们在某一个实现类上添加注解:@Primary,表明该实现类是默认优先使用的

    @Primary
    @Component
    public class LogPrint implements IPrint {
    
        @Override
        public void print(String msg) {
            System.out.println("logPrint print: " + msg);
        }
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9

    此时使用方式就很灵活,如下:

    @RestController
    @RequestMapping("/api/{edition}/page")
    public class MyPageHelperController {
    
        @Autowired
        private IPrint abc;//因为IPrint的实现类LogPrint添加了注解@Primary,所以在不特殊指定的情况下,abc指的就是logPrint
    
        @GetMapping("/myPage")
        @ResponseBody
        public Map<Object, Object> expenseStatement(HttpServletRequest request, HttpServletResponse response)  {
    
            abc.print("zjg");
    
            return new ConcurrentHashMap<>();
        }
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16

    这种情况下,如果想使用该接口的其他实现,可以如下操作:

    @RestController
    @RequestMapping("/api/{edition}/page")
    public class MyPageHelperController {
    
        @Resource(name="consolePrint")//专门指定
        private IPrint abc;
    
        @GetMapping("/myPage")
        @ResponseBody
        public Map<Object, Object> expenseStatement()  {
    
            abc.print("zjg");
    
            return new ConcurrentHashMap<>();
        }
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16

    另外还有几种可以动态调用多个实现类的方法,如下:

    方式一:利用 @Autowired 把多实现类注入到一个 Map
    利用 @Autowired 注解,可以把同一接口的实现类,注入到集合类型中,比如 List,Map,这里使用 Map 介绍

    (1)定义接口

    public interface StudentService {
        /**
         * 根据id 查询学生名字
         *
         * @param stuId Integer
         * @return String
         */
        String findStudentName(Integer stuId);
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9

    (2)定义一个常量管理服务映射

    public class ServiceMapConstants {
        /**
         * 学生服务
         */
        public static final String STUDENT_SERVICE_PREFIX = "studentService";
    
    
        public static class StudentServiceConstants {
            /**
             * 学生服务 - 中国站
             */
            public static final String REQUEST_SITE_CN = "studentServiceCN";
    
            /**
             * 学生服务 - 泰国站
             */
            public static final String REQUEST_SITE_TH = "studentServiceTH";
        }
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19

    (3)定义两个实现类
    中国区

    @Service(ServiceMapConstants.StudentServiceConstants.REQUEST_SITE_CN)
    public class StudentServiceCnImpl implements StudentService {
    
        @Override
        public String findStudentName(Integer stuId) {
            return "小明 --from cn";
        }
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8

    泰国区

    @Service(ServiceMapConstants.StudentServiceConstants.REQUEST_SITE_TH)
    public class StudentServiceThImpl implements StudentService {
    
        @Override
        public String findStudentName(Integer stuId) {
            return "XiaoMing --from th";
        }
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8

    (4)注入与调用服务

    @Autowired
        private Map<String, StudentService> studentServiceMap;
    
        @ApiOperation(value = "根据 ID 获取学生名称")
        @GetMapping("/getStudentName")
        public String getStudentById(Integer studentId, String source) {
            String key = ServiceMapConstants.STUDENT_SERVICE_PREFIX + source;
            // 如果没找到默认为中国
            StudentService studentService = Optional.ofNullable(studentServiceMap.get(key))
                    .orElse(studentServiceMap.get(ServiceMapConstants.StudentServiceConstants.REQUEST_SITE_CN));
            return studentService.findStudentName(studentId);
        }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12

    方式二:利用 ApplicationContext
    通过实现 ApplicationContextAware 接口,获取 ApplicationContext 对象,再通过名称或类型去获取具体的实现

    (1)定义接口

    public interface TeacherService {
    
        /**
         * 根据id 查询教师名字
         *
         * @param teacherId Integer
         * @return String
         */
        String findTeacherName(Integer teacherId);
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10

    (2)定义一个常量管理服务映射x

    public interface TeacherService {
    
        /**
         * 根据id 查询教师名字
         *
         * @param teacherId Integer
         * @return String
         */
        String findTeacherName(Integer teacherId);
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10

    (3)定义两个实现类
    中国区

    @Service(ServiceMapConstants.TeacherServiceConstants.REQUEST_SITE_CN)
    public class TeacherServiceCnImpl implements TeacherService {
    
        @Override
        public String findTeacherName(Integer teacherId) {
            return "张老师 --from cn";
        }
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8

    泰国区

    
    @Service(ServiceMapConstants.TeacherServiceConstants.REQUEST_SITE_TH)
    public class TeacherServiceThImpl implements TeacherService {
    
        @Override
        public String findTeacherName(Integer teacherId) {
            return "Teacher Zhang. --from th";
        }
    }
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10

    (4)定义获取服务的 Context

    @Component
    public class ServiceBeanContext implements ApplicationContextAware {
    
        private static ApplicationContext context;
    
        @Override
        public void setApplicationContext(ApplicationContext applicationContext) throws BeansException {
            context = applicationContext;
        }
    
        public static Object getProvider(String providerKey) {
            Assert.notNull(providerKey, "provider key not null");
            return context.getBean(providerKey);
        }
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15

    (5)注入与调用服务

    @ApiOperation(value = "根据 ID 获取教师名称")
        @GetMapping("/getTeacherName")
        public String getStudentById(Integer teacherId, String source) {
            try {
                //String key = ServiceMapConstants.TEACHER_SERVICE_PREFIX + source;
                String key = source;
                TeacherService teacherService = (TeacherService) ServiceBeanContext.getProvider(key);
                if (teacherService != null) {
                    return teacherService.findTeacherName(teacherId);
                }
            } catch (Exception e) {
                log.error("TeacherController.getStudentById 发生异常!", e);
            }
            return "";
        }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15

    方式三:使用getBeansOfType

    org.springframework.beans及org.springframework.context这两个包是Spring IoC容器的基础,
    其中重要的类有BeanFactory,BeanFactory是IoC容器的核心接口,其职责包括:实例化、定位、配置应用程序中的
    对象及建立这些对象间的依赖关系。

    ApplicationContext作为BeanFactory的子类,在Bean管理的功能上得到了很大的增强,也更易于与Spring AOP集成使用。
    今天我们要讨论的并不是BeanFactory或者ApplicationContext的实现原理,而是对ApplicationContext的一种实际应用方式。

    问题的提出

    在实际工作中,我们经常会遇到一个接口及多个实现类的情况,并且在不同的条件下会使用不同的实现类。从使用方式上看,有些类似SPI的用法,
    但是由于SPI的使用并不是太方便,那么怎么办呢?我们可以借助ApplicationContext的getBeansOfType来实现我们需要的结果。

    首先我们看一下这个方法的签名

    Map<String, T> getBeansOfType(Class type) throws BeansException;
    从上面的代码上我们可以看出来这个方法能返回一个接口的全部实现类(前提是所有实现类都必须由Spring IoC容器管理)。

    代码如下:

    接口:

    /**
     * 交通方式
     */
    public interface TrafficMode {
     
        /**
         * 查询交通方式编码
         * @return 编码
         */
        TrafficCode getCode();
     
        /**
         * 查询交通方式的费用,单位:分
         * @return 费用
         */
        Integer getFee();
     
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18

    枚举:

    /**
     * 交通类型枚举
     */
    public enum TrafficCode {
     
        TRAIN,
        BUS
     
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9

    接口有两个实现类:

    /**

    • 汽车方式
      */
    @Component
    public class BusMode implements TrafficMode {
     
        @Override
        public TrafficCode getCode() {
            return TrafficCode.BUS;
        }
     
        @Override
        public Integer getFee() {
            return 10000;
        }
     
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14

    /**

    • 火车方式
      */
    @Component
    public class TrainMode implements TrafficMode {
     
        @Override
        public TrafficCode getCode() {
            return TrafficCode.TRAIN;
        }
     
        @Override
        public Integer getFee() {
            return 9000;
        }
     
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14

    工厂类:

    /**

    • 交通方式工厂类
      */
    @Component
    public class TrafficModeFactory implements ApplicationContextAware {
     
        private static Map<TrafficCode, TrafficMode> trafficBeanMap;
     
        @Override
        public void setApplicationContext(ApplicationContext applicationContext) throws BeansException {
            Map<String, TrafficMode> map = applicationContext.getBeansOfType(TrafficMode.class);
            trafficBeanMap = new HashMap<>();
            map.forEach((key, value) -> trafficBeanMap.put(value.getCode(), value));
        }
     
        public static <T extends TrafficMode> T getTrafficMode(TrafficCode code) {
            return (T)trafficBeanMap.get(code);
        }
     
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17

    验证

    有了上面的代码之后,我们一起通过单元测试来看一下效果,单元测试代码片段如下:

    @Test
        public void testGetTrafficMode() {
            TrafficMode mode = TrafficModeFactory.getTrafficMode(TrafficCode.BUS);
            Assert.assertEquals(mode.getFee().intValue(), 10000);
     
            mode = TrafficModeFactory.getTrafficMode(TrafficCode.TRAIN);
            Assert.assertEquals(mode.getFee().intValue(), 9000);
        }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8

    运行之后的结果呢?必然是通过。

  • 相关阅读:
    前端技术社区总目录
    一、高效构建Java应用:Maven入门和进阶
    DAY03_瑞吉外卖——公共字段自动填充&新增分类&分类信息分页查询&删除分类&修改分类
    BGP学习笔记
    在jar里限制指定的包名才可调用(白名单)。
    Docker部署SpringBoot +Vue项目流程详解(含域名 + HTTPS)
    Linux服务器部署JavaWeb后端项目
    栈与队列3:有效的括号
    php学习笔记
    elasticsearch-head离线安装
  • 原文地址:https://blog.csdn.net/u014365523/article/details/125541101