Dubbo采用微内核+插件体系,使得设计优雅,扩展性强。那所谓的微内核+插件体系是如何实现的呢!即咱们定义了服务接口标准,让厂商去实现(若是不了解spi的请谷歌百度下), jdk经过ServiceLoader类实现spi机制的服务查找功能。插件
JDK实现spi服务查找: ServiceLoader设计
首先定义下示例接口code
package com.example; public interface Spi { booleanisSupport(String name); String sayHello(); }
ServiceLoader会遍历全部jar查找META-INF/services/com.example.Spi文件blog
package com.a.example; public class SpiAImpl implements Spi { publicboolean isSupport(String name) { return"SPIA".equalsIgnoreCase(name.trim()); } public String syaHello() { return “hello 我是厂商A”; } }
在A厂商提供的jar包中的META-INF/services/com.example.Spi文件内容为:接口
com.a.example.SpiAImpl #厂商A的spi实现全路径类名get
B厂商提供实现for循环
package com.b.example; public class SpiBImpl implements Spi { publicboolean isSupport(String name) { return"SPIB".equalsIgnoreCase(name.trim()); } public String syaHello() { return “hello 我是厂商B”; } }
在B厂商提供的jar包中的META-INF/services/com.example.Spi文件内容为:class
com.b.example.SpiBImpl #厂商B的spi实现全路径类名test
ServiceLoader.load(Spi.class)读取厂商A、B提供jar包中的文件,ServiceLoader实现了Iterable接口可经过while for循环语句遍历出全部实现。百度
一个接口多种实现,就如策略模式同样提供了策略的实现,可是没有提供策略的选择, 使用方能够根据isSupport方法根据业务传入厂商名来选择具体的厂商。
public class SpiFactory { //读取配置获取全部实现 privatestatic ServiceLoader spiLoader = ServiceLoader.load(Spi.class); //根据名字选取对应实现 publicstatic Spi getSpi(String name) { for(Spi spi : spiLoader) { if(spi.isSupport(name) ) { returnspi; } } returnnull; } }
SPI接口定义
定义了@SPI注解
public @interface SPI { Stringvalue() default ""; //指定默认的扩展点 }
只有在接口打了@SPI注解的接口类才会去查找扩展点实现,会依次从这几个文件中读取扩展点
META-INF/dubbo/internal/ //dubbo内部实现的各类扩展都放在了这个目录了 META-INF/dubbo/ META-INF/services/
咱们以Protocol接口为例, 接口上打上SPI注解,默认扩展点名字为dubbo
@SPI("dubbo") public interface Protocol{ }
具体实现的类有:
因此说:Remoting实现是Dubbo协议的实现。