dubbo hello world

随着互联网的发展,网站应用的规模不断扩大,常规的垂直应用架构已无法应对,分布式服务架构以及流动计算架构势在必行,亟需一个治理系统确保架构有条不紊的演进。

dubbo hello world_第1张图片

  • 单一应用架构
    • 当网站流量很小时,只需一个应用,将所有功能都部署在一起,以减少部署节点和成本。
    • 此时,用于简化增删改查工作量的 数据访问框架(ORM) 是关键。
  • 垂直应用架构
    • 当访问量逐渐增大,单一应用增加机器带来的加速度越来越小,将应用拆成互不相干的几个应用,以提升效率。
    • 此时,用于加速前端页面开发的 Web框架(MVC) 是关键。
  • 分布式服务架构
    • 当垂直应用越来越多,应用之间交互不可避免,将核心业务抽取出来,作为独立的服务,逐渐形成稳定的服务中心,使前端应用能更快速的响应多变的市场需求。
    • 此时,用于提高业务复用及整合的 分布式服务框架(RPC) 是关键。
  • 流动计算架构
    • 当服务越来越多,容量的评估,小服务资源的浪费等问题逐渐显现,此时需增加一个调度中心基于访问压力实时管理集群容量,提高集群利用率。
    • 此时,用于提高机器利用率的 资源调度和治理中心(SOA) 是关键。

1、dubbo架构:

dubbo hello world_第2张图片

2、节点角色说明

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

3、调用关系说明

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

4、Helloworld

其实dubbo里面最主要的角色就是:

  • Provider: 暴露服务的服务提供方。
  • Consumer: 调用远程服务的服务消费方。
  • Registry: 服务注册与发现的注册中心。
  • Container: 服务运行容器。

服务注册官方提供4种注册方式:

  1. Zookeeper注册中心:依赖于Zookeeper的稳定性,可用于生产环境。
  2. Redis注册中心: 要求服务器时间同步,用于检查心跳过期脏数据,可用于生产环境。
  3. Multicast注册中心:依赖于网络拓普和路由,跨机房有风险,小规模应用或开发测试环境
  4. Simple注册中心:没有集群支持,可能单点故障,试用。

因为我们只是一个简单的例子,就不引进其它组件,我们使用Multicast方式来做为我们的注册中心,使用Spring来做为我们的容器。

1、provider

1) 项目结构图:

提供一个简单的远程服务DemoService,只有一个接口那就是sayHello.

dubbo hello world_第3张图片

2) pom.xml

使用maven的方式来管理Jar包,主要是引用spring与dubbo。


<project xmlns="http://maven.apache.org/POM/4.0.0"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0modelVersion>

    <groupId>com.weimob.o2o.carlgroupId>
    <artifactId>dubbo-serviceartifactId>
    <version>1.0-SNAPSHOTversion>
    <packaging>jarpackaging>

    <properties>
        <spring.version>4.2.6.RELEASEspring.version>
        <dubbo.version>2.5.3dubbo.version>
    properties>

    <dependencies>
        <dependency>
            <groupId>org.springframeworkgroupId>
            <artifactId>spring-beansartifactId>
            <version>${spring.version}version>
        dependency>
        <dependency>
            <groupId>org.springframeworkgroupId>
            <artifactId>spring-coreartifactId>
            <version>${spring.version}version>
        dependency>
        <dependency>
            <groupId>org.springframeworkgroupId>
            <artifactId>spring-contextartifactId>
            <version>${spring.version}version>
        dependency>
        <dependency>
            <groupId>org.springframeworkgroupId>
            <artifactId>spring-context-supportartifactId>
            <version>${spring.version}version>
        dependency>
        <dependency>
            <groupId>org.springframeworkgroupId>
            <artifactId>spring-expressionartifactId>
            <version>${spring.version}version>
        dependency>
        <dependency>
            <groupId>com.alibabagroupId>
            <artifactId>dubboartifactId>
            <version>${dubbo.version}version>
            <exclusions>
                <exclusion>
                    <groupId>org.springframeworkgroupId>
                    <artifactId>springartifactId>
                exclusion>
            exclusions>
        dependency>

    dependencies>


project>

3) DemoService.java

定义一个接口,声明sayHello方法。

public interface DemoService {

    String sayHello(String name);

}

4) DemoServiceImpl.java

实现DemoService,提供服务的具体实现。

public class DemoServiceImpl implements DemoService {

    public String sayHello(String name) {
        return "hello," + name;
    }

}

5) provider-bean.xml

使用Spring配置文件配置provider类型的bean.


<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:application name="hello-world-app"  />

    
    <dubbo:registry address="multicast://224.5.6.7:1234" />

    
    <dubbo:protocol name="dubbo" port="20880" />

    
    <dubbo:service interface="com.weimob.o2o.carl.provider.DemoService" ref="demoService" />

    
    <bean id="demoService" class="com.weimob.o2o.carl.provider.impl.DemoServiceImpl" />

beans>

6) Provider.java

使用Spring容器启动服务,并注册到Multicast注册中心里面,以提Consumer方调用。

public class Provider {

    public static void main(String[] args) throws InterruptedException {
        ClassPathXmlApplicationContext context = new ClassPathXmlApplicationContext("provider-bean.xml");
        context.start();
        System.out.println("service provider start...");
        new CountDownLatch(1).await();
    }

}

7) 启动Spring容器

运行Provider.java,如果控制台如下显示,则表示服务发布成功:

dubbo hello world_第4张图片

2、Consumer

1) 项目结构图

调用Provider提供的远程服务DemoService.

dubbo hello world_第5张图片

2) pom.xml

服务调用方的pom配置,主要是引入服务提供方的接口。

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0modelVersion>

    <groupId>com.weimob.o2o.carlgroupId>
    <artifactId>dubbo-clientartifactId>
    <version>1.0-SNAPSHOTversion>
    <packaging>jarpackaging>

    <name>dubbo-clientname>
    <url>http://maven.apache.orgurl>

    <properties>
        <spring.version>4.2.6.RELEASEspring.version>
        <dubbo.version>2.5.3dubbo.version>
        <project.build.sourceEncoding>UTF-8project.build.sourceEncoding>
    properties>

    <dependencies>
        <dependency>
            <groupId>com.weimob.o2o.carlgroupId>
            <artifactId>dubbo-serviceartifactId>
            <version>1.0-SNAPSHOTversion>
        dependency>
        <dependency>
            <groupId>org.springframeworkgroupId>
            <artifactId>spring-beansartifactId>
            <version>${spring.version}version>
        dependency>
        <dependency>
            <groupId>org.springframeworkgroupId>
            <artifactId>spring-coreartifactId>
            <version>${spring.version}version>
        dependency>
        <dependency>
            <groupId>org.springframeworkgroupId>
            <artifactId>spring-contextartifactId>
            <version>${spring.version}version>
        dependency>
        <dependency>
            <groupId>org.springframeworkgroupId>
            <artifactId>spring-context-supportartifactId>
            <version>${spring.version}version>
        dependency>
        <dependency>
            <groupId>org.springframeworkgroupId>
            <artifactId>spring-expressionartifactId>
            <version>${spring.version}version>
        dependency>
        <dependency>
            <groupId>com.alibabagroupId>
            <artifactId>dubboartifactId>
            <version>${dubbo.version}version>
            <exclusions>
                <exclusion>
                    <groupId>org.springframeworkgroupId>
                    <artifactId>springartifactId>
                exclusion>
            exclusions>
        dependency>
        <dependency>
            <groupId>junitgroupId>
            <artifactId>junitartifactId>
            <version>3.8.1version>
            <scope>testscope>
        dependency>
    dependencies>
project>

3) consumer-bean.xml

使用Spring的Bean的方式来配置consumer,并引入需要调用的远程服务的Class.


<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:application name="consumer-of-helloworld-app"  />

    
    <dubbo:registry address="multicast://224.5.6.7:1234" />

    
    <dubbo:reference id="demoService" interface="com.weimob.o2o.carl.provider.DemoService" />

beans>

4) Consumer

consumer调用暴露在multicast注册中心中的服务。

public class Consumer {

    public static void main(String[] args) {
        ClassPathXmlApplicationContext context = new ClassPathXmlApplicationContext("consumer-bean.xml");
        context.start();
        DemoService demoService = (DemoService)context.getBean("demoService", DemoService.class); // 获取远程服务代理
        String hello = demoService.sayHello("carl"); // 执行远程方法
        System.out.println( hello ); // 显示调用结果
    }

}

5) 调用远程服务

启动Consumer.java,测试远程调用服务:

dubbo hello world_第6张图片

如果控制台显示:hello, carl.那么恭喜你,你成功了。

你可能感兴趣的:(Distributed,Dubbo)