我是靠谱客的博主 感性啤酒,最近开发中收集的这篇文章主要介绍SPI实现,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

SPI的英文全称为Service Provider Interface,字面意思为服务提供者接口,它是jdk提供给“服务提供厂商”或者“插件开发者”使用的接口。

目的是解耦合

用法:

在resource里创建一个包为META-INF必须是这个名字在里面创建spring.factories

创建一个service层建立一个接口,并创建一个实现类实现接口

public interface StudentService {
    String say();
}

实现接口

  @Override
    public String say() {
        return "nihao 寒梅灭";
    }

在spring.factories里面写入调用

接口地址=实现类地址

多个实现类中间用逗号隔开

实例:

com.wzx.service.StudentService =
  com.wzx.service.impl.StudentServiceImpl

多个实现类

com.wzx.service.StudentService =
  com.wzx.service.impl.StudentServiceImpl,
  com.wzx.service.impl.StudentServiceImpl2

在APP里面写入进行调用

 List<StudentService> studentServices = SpringFactoriesLoader.loadFactories(StudentService.class,APP.class.getClassLoader());
        for (StudentService studentService : studentServices) {
            String say = studentService.say();
            System.out.println(say);
        }

也可以写成

 List<StudentService> studentServices = SpringFactoriesLoader.loadFactories(StudentService.class,ClassUtils.getDefaultClassLoader());
        for (StudentService studentService : studentServices) {
            String say = studentService.say();
            System.out.println(say);
        }

还可以调用实现类的名称

 List<String> strings = SpringFactoriesLoader.loadFactoryNames(StudentService.class, ClassUtils.getDefaultClassLoader());
        for (String string : strings) {
            System.out.println(string);
        }

API具体以后有待补充

最后

以上就是感性啤酒为你收集整理的SPI实现的全部内容,希望文章能够帮你解决SPI实现所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(75)

评论列表共有 0 条评论

立即
投稿
返回
顶部