服务发现
Dubbo 分类
Dubbo当前常用的有2个分支版本,一个是apache dubbo(GroupID是org.apache.dubbo), 一个是dubbox (GroupID是com.alibaba)。两个分支的dubbo,对应不同的接入插件,大家接入之前可以先通过GroupID判断下当前项目依赖的是哪个分支的dubbo。
Apache Dubbo 接入
支持版本
当前只支持dubbo 2.x版本的接入,dubbo 3.x暂未支持。
引入依赖
首先,需要将插件 org.apache.dubbo.extensions:dubbo-registry-polaris 引入到业务的POM中,插件版本建议使用最新版本:release
- org.apache.dubbo.extensions:dubbo-registry-polaris:北极星接入插件
<dependency>
<groupId>org.apache.dubbo.extensions</groupId>
<artifactId>dubbo-registry-polaris</artifactId>
<version>1.0.0</version>
</dependency>
配置北极星注册中心地址
接下来,需要添加北极星registry的配置,指定北极星的地址及相关配置信息,可以通过配置文件及代码的方式进行指定:
配置文件方式添加:
<dubbo:registry address="polaris://127.0.0.1:8091"/>
执行服务发现及调用
使用Dubbo原生的方式执行服务发现和调用,由于dubbo支持多种调用方式,样例只展示其中一种,其他调用方式也都支持。
// 获取服务引用
ReferenceConfig<DemoService> reference = new ReferenceConfig<>();
reference.setInterface(DemoService.class);
reference.setGeneric("true");
//指定注册中心地址
DubboBootstrap bootstrap = DubboBootstrap.getInstance();
bootstrap.application(new ApplicationConfig("dubbo-demo-api-consumer"))
.registry(new RegistryConfig("polaris://127.0.0.1:8091"))
.reference(reference)
.start();
//执行服务调用
DemoService demoService = ReferenceConfigCache.getCache().get(reference);
String message = demoService.sayHello("dubbo");
System.out.println(message);
样例
服务发现样例可以参考:dubbo-discovery-consumer