Dubbo官网:http://dubbo.apache.org/zh-cn/docs/user/quick-start.html

最近项目中使用了RPC远程服务调用框架,接下来总结一下dubbo的个人理解与使用。。。。

其实,dubbo+zookeeper的使用大家可能听得多,但是具体干嘛用的,一头雾水,大家可以把dubbo理解成一个分布式框架,zk是管理dubbo服务的监控中心。具体如何,请看如下讲解。。。

一、Dubbo简介

1、Dubbo是什么?

Dubbo是阿里巴巴SOA服务化治理方案的核心框架,每天为2,000多个服务提供30多亿次访问量支持,并被广泛应用于阿里巴巴集团的各成员站点。
Dubbo是一个分布式服务框架,致力于提供高性能和透明化的RPC远程服务调用方案,以及SOA服务治理方案。

2、核心部分

远程通讯:
    提供对多种基于长连接的NIO框架抽象封装,包括多种线程模型,序列化,以及“请求-响应”模式的信息交换方式

集群容错:
    提供基于接口方法的透明远程过程调用,包括多协议支持,以及软负载均衡,失败容错,地址路由,动态配置等集群支持

自动发现:
    基于注册中心目录服务,使服务消费方能动态的查找服务提供方,使地址透明,使服务提供方可以平滑增加或减少机器。

RPC能做什么?

透明化的远程方法调用,就像调用本地方法一样调用远程方法,只需简单配置,没有任何API侵入。软负载均衡及容错机制,可在内网替代F5等硬件负载均衡器,降低成本,减少单点。服务自动注册与发现,不再需要写死服务提供方地址,注册中心基于接口名查询服务提供者的IP地址,并且能够平滑添加或删除服务提供者

3、dubbo+ZK架构图

 

节点角色说明:
    Provider: 暴露服务的服务提供方。
    Consumer: 调用远程服务的服务消费方。
    Registry: 服务注册与发现的注册中心。
    Monitor:统计服务的调用次调和调用时间的监控中心。
    Container: 服务运行容器。

调用关系说明:
    0. 服务容器负责启动,加载,运行服务提供者。
    1.服务提供者在启动时,向注册中心注册自己提供的服务。
    2.服务消费者在启动时,向注册中心订阅自己所需的服务。
    3.注册中心返回服务提供者地址列表给消费者,如果有变更,注册中心将基于长连接推送变更数据给消费者。
    4.服务消费者,从提供者地址列表中,基于软负载均衡算法,选一台提供者进行调用,如果调用失败,再选另一台调用。
    5.服务消费者和提供者,在内存中累计调用次数和调用时间,定时每分钟发送一次统计数据到监控中心。

4、开发步骤

 步骤:

a.添加相关dubbo、zk依赖jar包

b.添加提供者(消费者)相关配置文件:

    b1.声明提供者(消费者),

    b2.将dubbo协议、zk注册中心的服务地址暴露(消费者发现zk注册服务地址)

    b3.声明需要提供的服务接口与具体实现bean(需要远程调用的接口)
 
c.搭建zk服务监控中心

   c1.开启zk的服务,将dubbo的接口注册到服务中

   c2.启动dubbo的监控中心,监控提供者和消费者的接口调用和注册信息

二、入门实例

Dubbo采用全spring配置方式,透明化接入应用,对应用没有任何API侵入,只需用Spring加载Dubbo的配置即可,Dubbo基于Spring的Schema扩展进行加载。

新建maven工程,添加dubbo、spring、zk相关依赖

<properties> 
    <spring.version>4.3.7.RELEASE</spring.version> 
 </properties> 

<dependencies> 
    <!-- dubbo+zk相关 -->
    <dependency> 
      <groupId>com.alibaba</groupId>  
      <artifactId>dubbo</artifactId>  
      <version>2.5.3</version>  
      <exclusions> 
        <exclusion> 
          <groupId>org.springframework</groupId>  
          <artifactId>spring</artifactId> 
        </exclusion> 
      </exclusions> 
    </dependency>  
    <dependency> 
      <groupId>com.github.sgroschupf</groupId>  
      <artifactId>zkclient</artifactId>  
      <version>0.1</version> 
    </dependency>  
    <!-- spring相关 -->  
    <dependency> 
      <groupId>org.springframework</groupId>  
      <artifactId>spring-core</artifactId>  
      <version>${spring.version}</version> 
    </dependency>  
    <dependency> 
      <groupId>org.springframework</groupId>  
      <artifactId>spring-beans</artifactId>  
      <version>${spring.version}</version> 
    </dependency>  
    <dependency> 
      <groupId>org.springframework</groupId>  
      <artifactId>spring-context</artifactId>  
      <version>${spring.version}</version> 
    </dependency>  
    <dependency> 
      <groupId>org.springframework</groupId>  
      <artifactId>spring-jdbc</artifactId>  
      <version>${spring.version}</version> 
    </dependency>  
    <dependency> 
      <groupId>org.springframework</groupId>  
      <artifactId>spring-web</artifactId>  
      <version>${spring.version}</version> 
    </dependency>  
    <dependency> 
      <groupId>org.springframework</groupId>  
      <artifactId>spring-webmvc</artifactId>  
      <version>${spring.version}</version> 
    </dependency>  
    <dependency> 
      <groupId>org.springframework</groupId>  
      <artifactId>spring-aop</artifactId>  
      <version>${spring.version}</version> 
    </dependency>  
    <dependency> 
      <groupId>org.springframework</groupId>  
      <artifactId>spring-tx</artifactId>  
      <version>${spring.version}</version> 
    </dependency>  
    <dependency> 
      <groupId>org.springframework</groupId>  
      <artifactId>spring-orm</artifactId>  
      <version>${spring.version}</version> 
    </dependency>  
    <dependency> 
      <groupId>org.springframework</groupId>  
      <artifactId>spring-context-support</artifactId>  
      <version>${spring.version}</version> 
    </dependency>  
    <dependency> 
      <groupId>org.springframework</groupId>  
      <artifactId>spring-test</artifactId>  
      <version>${spring.version}</version> 
    </dependency>  
    <dependency> 
      <groupId>org.springframework</groupId>  
      <artifactId>spring-jms</artifactId>  
      <version>${spring.version}</version> 
    </dependency> 
  </dependencies> 

1、提供者

添加提供者配置application.xml,编写对应的接口与实现类。

测试启动:

2、消费者

添加消费者配置application.xml,远程调用需要的接口服务

测试消费者:

3、搭建好zk服务后,启动zk服务,进入dubbo的监控平台

dubbo+zk服务搭建:https://www.cnblogs.com/renhq/p/4654925.html

https://blog.csdn.net/zh15732621679/article/details/77102270

打开网址http://localhost:8090/dubbo-admin-2.5.4-SNAPSHOT/,输入root/root

dubbo相关配置:

https://www.cnblogs.com/linjiqin/p/5859153.html 

 

Logo

权威|前沿|技术|干货|国内首个API全生命周期开发者社区

更多推荐