Dubbo简单入门

说明

Dubbo官方网站下面的文字来自官网

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

Dubbo是一个分布式服务框架,致力于提供高性能和透明化的RPC远程服务调用方案,以及SOA服务治理方案。从本质上说是一个分布式远程服务调用框架。核心内容如下:

  1. 远程通讯: 提供对多种基于长连接的NIO框架抽象封装,包括多种线程模型,序列化,以及“请求-响应”模式的信息交换方式。
  2. 集群容错: 提供基于接口方法的透明远程过程调用,包括多协议支持,以及软负载均衡,失败容错,地址路由,动态配置等集群支持。
  3. 自动发现: 基于注册中心目录服务,使服务消费方能动态的查找服务提供方,使地址透明,使服务提供方可以平滑增加或减少机器。

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

架构

dubbo的整体架构图:


Dubbo简单入门_第1张图片
dubbo整体架构

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

调用关系说明:

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

spring + zookeeper + dubbo整合

这里使用的是dubbo2.5.3版本

  1. zookeeper作为注册中心:首先启动zookeeper
  2. 使用dubbo-admin-2.5.3.war作为dubbo的管理工具:在dubbo.properties文件中设置zookeeper的地址和访问密码
dubbo.registry.address=zookeeper://192.168.139.42:2181
dubbo.admin.root.password=abc
dubbo.admin.guest.password=abc
  1. 服务端spring整合
    Maven依赖
   
      
        cn.test
        test-maven-api
        0.0.1-SNAPSHOT
    
     
            com.alibaba
            dubbo
            2.5.3
        
        
         
            org.apache.zookeeper
            zookeeper
            3.4.6
        
  
      
         com.github.sgroschupf
         zkclient
         0.1
      

服务代码

public interface TestRegistryService {
   public String hello(String name);
}
  @Service("testRegistryService")
public class TestRegistryServiceImpl implements TestRegistryService {
    public String hello(String name) {  
        return "hello"+name;
    }
}

spring配置中暴漏接口


xmlns:dubbo="http://code.alibabatech.com/schema/dubbo"
    xmlns:context="http://www.springframework.org/schema/context"
    xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.1.xsd
    http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.1.xsd
    http://www.springframework.org/schema/jee http://www.springframework.org/schema/jee/spring-jee-3.1.xsd
    http://code.alibabatech.com/schema/dubbo http://code.alibabatech.com/schema/dubbo/dubbo.xsd
    http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.1.xsd"
    default-lazy-init="false" >
   
   
     
   
    
      

  1. 消费端使用
    spring配置文件如下

xmlns:dubbo="http://code.alibabatech.com/schema/dubbo"
    xmlns:context="http://www.springframework.org/schema/context"
    xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.1.xsd
    http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.1.xsd
    http://www.springframework.org/schema/jee http://www.springframework.org/schema/jee/spring-jee-3.1.xsd
    http://code.alibabatech.com/schema/dubbo http://code.alibabatech.com/schema/dubbo/dubbo.xsd
    http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.1.xsd"
    default-lazy-init="false" >

   
     
    
       
   

使用服务的方法

@Controller
public class IndexController {
    @Autowired
    private TestRegistryService testRegistryService;
    
    @RequestMapping("/hello")
    public String index(Model model){
         String name=testRegistryService.hello("zz");
         System.out.println("xx=="+name);
        return "";
    }
}

你可能感兴趣的:(Dubbo简单入门)