在升级Dubbo3的过程中,同时升级了Triple协议,因为原来的dubbo协议的接口其他服务还在使用,且暂时无法升级,因此部分旧的dubbo协议的服务需要做兼容。
兼容的方式有两种,一种比较笨的方式是将需要兼容的dubbo协议服务独立出来一个服务单独部署;另一种是在同一个服务中去做兼容,这种情况就需要使用双协议注册的方式,官方文档中也提供了相关的文档,但是稳定时使用的xml的配置方式,我们项目是springboot工程,因此配置稍有不同。
官方多协议配置介绍
一、dubbo官网关于多协议配置介绍如下
1、不同服务不同协议
不同服务在性能上适用不同协议进行传输,比如大数据用短连接协议,小数据大并发用长连接协议
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:dubbo="http://dubbo.apache.org/schema/dubbo"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.3.xsd http://dubbo.apache.org/schema/dubbo http://dubbo.apache.org/schema/dubbo/dubbo.xsd">
<dubbo:application name="world" />
<dubbo:registry id="registry" address="10.20.141.150:9090" username="admin" password="hello1234" />
<dubbo:protocol name="dubbo" port="20880" />
<dubbo:protocol name="rmi" port="1099" />
<dubbo:service interface="com.alibaba.hello.api.HelloService" version="1.0.0" ref="helloService" protocol="dubbo" />
<dubbo:service interface="com.alibaba.hello.api.DemoService" version="1.0.0" ref="demoService" protocol="rmi" />
</beans>
2、多协议暴露服务
需要与 http 客户端相互操作
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:dubbo="http://dubbo.apache.org/schema/dubbo"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.3.xsd http://dubbo.apache.org/schema/dubbo http://dubbo.apache.org/schema/dubbo/dubbo.xsd">
<dubbo:application name="world" />
<dubbo:registry id="registry" address="10.20.141.150:9090" username="admin" password="hello1234" />
<dubbo:protocol name="dubbo" port="20880" />
<dubbo:protocol name="hessian" port="8080" />
<dubbo:service id="helloService" interface="com.alibaba.hello.api.HelloService" version="1.0.0" protocol="dubbo,hessian" />
</beans>
二、springboot工程中使用dubbo多协议
要使多协议使用生效,需要在springboot工程启动配置加上注解@EnableDubboConfig
@EnableDubboConfig
@SpringBootApplication
@DubboComponentScan("com.my.test.provider")
public class MyServApp {
public static void main(String[] args) {
SpringApplication.run(MyServApp.class, args);
}
}
多协议配置如下
启用多协议,为每个协议开启了一个独立的端口,其实相当于是两个不同的服务了
dubbo:
application:
register-mode: all
metadata-service-port: 20982
registry:
address: nacos://127.0.0.1:8848?namespace=my_local
protocols:
tri:
name: tri
port: -1
dubbo:
name: dubbo
port: -1
1、不同服务不同协议
服务A和服务B分别使用了不同的协议,通过@DubboService 的protocol 属性指定,属性值对应配置文件中多协议的key值
如服务A使用tri 协议
@DubboService(protocol = "tri")
public class AServiceImpl implements AServiceApi {
}
如服务B使用dubbo 协议
@DubboService(protocol = "dubbo")
public class BServiceImpl implements BServiceApi {
}
2、多协议暴露服务
同一个服务同时注册为两种协议的服务,同样是使用注解@DubboService 指定,protocol 属性值配置多协议,使用英文逗号分隔
@DubboService(protocol = "dubbo,tri")
public class CServiceImpl implements CServiceApi {
}
|