Dubbo
Dubbo跟Spring cloud的功能类似,都是用于微服务框架。主要区别是一个通过RPC相互调用,一个通过HTTP restful api调用。
架构
大致流程:
1.在容器中运行服务提供者
2.服务提供者->在注册中心中注册服务(长连接)
3.消费者在注册中心中订阅服务
4.注册中心告诉订阅服务的地址,消费者通过软负载调用服务
5.当服务发生变更时,注册中心会通知消费者
6.对于消费者和服务者而言,在运行过程中,会每隔一段时间向监控服务发送请求或者执行时间以便监控。
使用
注册中心多采用zookeeper
服务者
这里只说远程服务,本地服务中直接注入bean,调用bean即可,在dubbo中,服务提供者多采用接口的方式向外提供服务
例子
package ****;
public interface DemoService {
String sayHello(String name);
}
public class DemoService implements DemoService{
@Override
public String sayHello(String name) {
return "hello" + name;
}
}
<?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://code.alibabatech.com/schema/dubbo"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
http://code.alibabatech.com/schema/dubbo
http://code.alibabatech.com/schema/dubbo/dubbo.xsd">
<!--定义了提供方应用信息,用于计算依赖关系;在 dubbo-admin 或 dubbo-monitor 会显示这个名字,方便辨识-->
<dubbo:application name="demotest-provider" owner="programmer" organization="dubbox"/>
<!--使用 zookeeper 注册中心暴露服务,注意要先开启 zookeeper-->
<dubbo:registry address="zookeeper地址"/>
<!-- 用dubbo协议在20880端口暴露服务 -->
<dubbo:protocol name="dubbo" port="20880" />
<!--使用 dubbo 协议实现定义好的 api.PermissionService 接口-->
<dubbo:service interface="暴露接口路径" timeout="30000"
ref="demoService" protocol="dubbo" />
<!--具体实现该接口的 bean-->
<bean id="demoService" class="暴露接口的实现类路径"/>
</beans>
消费者
<!-- 消费方应用名,用于计算依赖关系,不是匹配条件,不要与提供方一样 -->
<dubbo:application name="consumer-of-helloworld-app" />
<!-- 使用multicast广播注册中心暴露发现服务地址 -->
<dubbo:registry address="注册中心地址" />
<!-- 生成远程服务代理,可以和本地bean一样使用demoService -->
<dubbo:reference id="demoService" interface="服务提供者的路径" />
在使用中可以直接注入@Resource(demoService)使用
issue
在开发过程中,远程调用返回基本类型的很少,多返回的是对象,这时需要在服务提供者中返回的对象实现序列化。
tips:dubbo默认采用的Hession序列化,所以对自定义的集合框架无法完成序列化。