Dubbo 技术详解,我非常喜欢Dubbo的设计

举报
赵KK日常技术记录 发表于 2023/06/24 21:57:06 2023/06/24
【摘要】 # Dubbo 技术详解Dubbo 是阿里巴巴开源的一款高性能、轻量级分布式服务框架,基于 Java 的 RPC 协议,支持多种协议和多种注册中心。其官方网站为 [https://dubbo.apache.org/zh/。](https://dubbo.apache.org/zh/%E3%80%82)本文将从以下几个方面对 Dubbo 进行详细讲解:- Dubbo 实现原理及代码示例- Du...
# Dubbo 技术详解

Dubbo 是阿里巴巴开源的一款高性能、轻量级分布式服务框架,基于 Java 的 RPC 协议,支持多种协议和多种注册中心。其官方网站为 [https://dubbo.apache.org/zh/。](https://dubbo.apache.org/zh/%E3%80%82)

本文将从以下几个方面对 Dubbo 进行详细讲解:

Dubbo 实现原理及代码示例
Dubbo 拓展协议分类及代码示例
Dubbo 拓展实现原理及代码示例
Dubbo 服务发现实现原理及代码示例

## Dubbo 实现原理及代码示例

Dubbo 实现思路主要是将服务提供者发布到注册中心,消费者通过相应的接口调用服务,并通过 Dubbo 进行远程调用。

Dubbo 的实现,可以按照下面几个层次进行划分,如下图所示[[1](https://zhuanlan.zhihu.com/p/382200101)]:


![请在此添加图片描述](https://developer.qcloudimg.com/http-save/yehe-admin/3ee63b9ff0ef376afd0ae2e59f543ae6.png?qc_blockWidth=618&qc_blockHeight=358)


Service 层:服务接口层,该层是服务消费者和服务提供者都需要实现的,主要是定义服务接口和方法。

```javascript
public interface HelloService {

    String sayHello(String name);

}
```

Config 层:配置层,主要负责 Dubbo 的配置,如各协议配置默认值、服务提供者和服务消费者配置等。

```javascript
<dubbo:application name="dubbo-demo-consumer" />
<dubbo:registry address="zookeeper://127.0.0.1:2181" />

<dubbo:reference id="helloService" interface="com.example.demo.service.HelloService" />
```

Proxy 层:服务代理层,主要用于封装服务接口,实现客户端的远程调用。

```javascript
public class HelloServiceProxy implements HelloService {
    private GenericService genericService;
    
    public HelloServiceProxy(GenericService genericService) {
        super();
        this.genericService = genericService;
    }
    
    @Override
    public String sayHello(String name) {
        Object result = genericService.$invoke("sayHello"new String[]{String.class.getName()}, new Object[]{name});
        return String.valueOf(result);
    }
}
```

Registry 层:注册中心层,负责服务的注册与发现。

```javascript
@Service(interfaceName = "com.example.demo.service.HelloService")
public class HelloServiceImpl implements HelloService {

    @Override
    public String sayHello(String name) {
        return "Hello, " + name + "!";
    }

}
```

Cluster 层:集群层,负责将多个服务提供者组合成一个服务提供组,并提供服务的均衡负载和容错处理。

```javascript
<dubbo:service interface="com.example.demo.service.HelloService" ref="helloService">
    <dubbo:cluster loadbalance="random" />
</dubbo:service>
```

Monitor 层:监控层,负责对 RPC 调用进行监控,以便于日志输出、统计服务调用次数等。

```javascript
<dubbo:service interface="com.example.demo.service.HelloService" ref="helloService">
    <dubbo:monitor protocol="registry" />
</dubbo:service>
```

Protocol 层:协议层,主要是定义 RPC 调用的格式和方式,Dubbo 支持多种协议,如 dubbo 协议、rmi 协议、hessian 协议等。

```javascript
public class HelloServiceProtocol implements Protocol {

    @Override
    public int getDefaultPort() {
        return 8080;
    }

    @Override
    public Exporter export(Invoker invoker) throws RpcException {
        return null;
    }

    @Override
    public Invoker refer(Class type, URL url) throws RpcException {
        if (GenericService.class.equals(type)) {
            return new HelloServiceInvoker(type, url);
        }
        return null;
    }

    @Override
    public void destroy() {

    }

}
```

Filter 层:过滤器层,负责在 RPC 调用前后进行一些预处理工作,如权限校验、数据加密解密等。

```javascript
public class LogFilter implements Filter {

    @Override
    public Result invoke(Invoker<?> invoker, Invocation invocation) throws RpcException {
        String serviceName = invoker.getInterface().getSimpleName();
        String methodName = invocation.getMethodName();

        long start = System.currentTimeMillis();
        Result result = invoker.invoke(invocation);
        long end = System.currentTimeMillis();
        LOG.info("Invoke {}.{}, dataSize:{}, time:{}ms", serviceName, methodName, result.getData().length, end - start);

        return result;
    }

}
```

Invoker 层:调用层,负责将服务接口和协议组合为一个可执行的对象,并提供服务的执行方法。

```javascript
public class HelloServiceInvoker<Textends AbstractInvoker<T> {

    public HelloServiceInvoker(Class<T> type, URL url) {
        super(type, url);
    }

    @Override
    protected Result doInvoke(Invocation invocation) throws Throwable {
        String methodName = invocation.getMethodName();
        Object[] arguments = invocation.getArguments();

        if ("sayHello".equals(methodName)) {
            String name = (String) arguments[0];
            String result = "Hello, " + name + "!";
            return new RpcResult(result);
        }

        return new RpcResult();
    }

}
```

Extension 层:扩展层,通过 SPI 机制来支持 Dubbo 的扩展,如负载均衡、序列化、压缩等。

```javascript
// 在 resources/META-INF/dubbo/com.alibaba.dubbo.rpc.cluster.LoadBalance 文件中配置名称为 "random" 的 LoadBalance 实现类。
@SPI("random")
public interface LoadBalance {

    /**
     * Select one invoker in list.
     * <p>
     *     随机选择一个服务提供者调用。
     * </p>
     *
     * @param invokers   invokers.
     * @param url        refer url
     * @param invocation invocation.
     * @return selected invoker.
     * @throws RpcException 当发生异常时抛出。
     */
    <TInvoker<T> select(List<Invoker<T>> invokers, URL url, Invocation invocation) throws RpcException;

}
```

## Dubbo 拓展协议分类及代码示例

Dubbo 支持的协议包括:

Dubbo 协议:用于服务之间的通信。

```javascript
<!-- 使用 dubbo 协议暴露服务 -->
<dubbo:protocol name="dubbo" port="12345" />

<!-- 使用 dubbo 协议引用服务 -->
<dubbo:reference interface="com.example.demo.service.HelloService" protocol="dubbo" />
```

RMI 协议:使用 Java 的 RMI(Remote Method Invocation)机制进行通<!-- 使用 rmi 协议暴露服务 -->
<dubbo:protocol name="rmi" port="1099" />

<!-- 使用 rmi 协议引用服务 -->
<dubbo:reference interface="com.example.demo.service.HelloService" protocol="rmi" />
Hessian 协议:使用 Hessian 进行序列化和反序列化,适合传输较小的数据量。

```javascript
xml复制代码<!-- 使用 hessian 协议暴露服务 -->
<dubbo:protocol name="hessian" port="8080" />

<!-- 使用 hessian 协议引用服务 -->
<dubbo:reference interface="com.example.demo.service.HelloService" protocol="hessian" />
```

HTTP 和 WebService 协议:基于 HTTP 协议进行通讯,使用 SOAP 消息格式进行数据交互。

```javascript
xml复制代码<!-- 使用 http 协议暴露服务 -->
<dubbo:protocol name="http" port="8080" />

<!-- 使用 http 协议引用服务 -->
<dubbo:reference interface="com.example.demo.service.HelloService" protocol="http" />

<!-- 使用 webservice 协议暴露服务 -->
<dubbo:protocol name="webservice" port="8080" />

<!-- 使用 webservice 协议引用服务 -->
<dubbo:reference interface="com.example.demo.service.HelloService" protocol="webservice" />
```

## Dubbo 拓展实现原理及代码示例

Dubbo 支持 SPI(Service Provider Interface)机制来进行功能拓展,其实现方式主要包括以下三点:

ExtensionLoader:用于加载指定接口的拓展实现。

```javascript
ExtensionLoader<Filter> extensionLoader = ExtensionLoader.getExtensionLoader(Filter.class);
Filter filter = extensionLoader.getExtension("log");
Result result = filter.invoke(invoker, invocation);
```

Adaptive:通过 @Adaptive 注解使得 Dubbo 可以在运行时动态选择对应的拓展实现。

```javascript
@Adaptive("loadbalance")
public interface LoadBalance {

    <TInvoker<T> select(List<Invoker<T>> invokers, URL url, Invocation invocation) throws RpcException;

}
```

Configurable:用于将不同服务的配置封装成 Config 对象,方便进行参数配置和管理。

```javascript
@Configuration
public class DubboConfiguration {

    @Bean
    public ApplicationConfig applicationConfig() {
        ApplicationConfig applicationConfig = new ApplicationConfig();
        applicationConfig.setName("dubbo-demo-provider");
        return applicationConfig;
    }

    @Bean
    public ProtocolConfig protocolConfig() {
        ProtocolConfig protocolConfig = new ProtocolConfig();
        protocolConfig.setName("dubbo");
        protocolConfig.setPort(20880);
        return protocolConfig;
    }

    @Bean
    public RegistryConfig registryConfig() {
        RegistryConfig registryConfig = new RegistryConfig();
        registryConfig.setAddress("zookeeper://127.0.0.1:2181");
        return registryConfig;
    }

}
```

## Dubbo 服务发现实现原理及代码示例

Dubbo 服务发现的实现原理是基于注册中心实现的,具体来说,Dubbo 通过注册中心将提供者的服务地址信息注册到注册中心,消费者通过注册中心获取服务提供者的地址信息,再进行调用。

在 Dubbo 中,服务发现由类`org.apache.dubbo.registry.RegistryService`定义,并且有三种方式进行实现:Zookeeper、Redis 和 Multicast。

其中,Zookeeper 是 Dubbo 默认的注册中心实现方式。在 Dubbo 中,服务的注册与发现是通过类`org.apache.dubbo.registry.Registry``org.apache.dubbo.registry.RegistryFactory`完成的。

下面是一个基于 Zookeeper 注册中心实现的服务发现示例代码:

```javascript
// 配置服务注册中心地址
RegistryConfig registry = new RegistryConfig();
registry.setAddress("zookeeper://127.0.0.1:2181");

// 配置服务消费者
ReferenceConfig<HelloService> reference = new ReferenceConfig<>();
reference.setRegistry(registry);
reference.setInterface(HelloService.class);
reference.setVersion("1.0.0");

// 获取服务对象并调用方法
HelloService helloService = reference.get();
String result = helloService.sayHello("world");
```

在上面的示例中,首先通过`RegistryConfig`配置服务注册中心的地址,然后通过`ReferenceConfig`配置服务的消费者,包括注册中心的配置、服务接口、以及版本号等。最后获取服务对象后,就可以调用服务提供者的方法。


【版权声明】本文为华为云社区用户原创内容,转载时必须标注文章的来源(华为云社区)、文章链接、文章作者等基本信息, 否则作者和本社区有权追究责任。如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱: cloudbbs@huaweicloud.com
  • 点赞
  • 收藏
  • 关注作者

评论(0

0/1000
抱歉,系统识别当前为高风险访问,暂不支持该操作

全部回复

上滑加载中

设置昵称

在此一键设置昵称,即可参与社区互动!

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。