Dubbo远程调用服务框架原理与示例 - 沐风山

Dubbo 是阿里巴巴公司开源的一个高性能优秀的服务框架,使得应用可通过高性能的 RPC 实现服务的输出和输入功能,可以和     Spring      框架无缝集成。    主要核心部件:      
  • Remoting:         网络通信框架,实现了 sync-over-async 和 request-response 消息机制.     
  • RPC:                 (Remote Procedure Call Protocol远程过程调用协议),        一个远程过程调用的抽象,支持负载均衡、容灾和集群功能     
  • Registry:         服务目录框架用于服务的注册和服务事件发布和订阅     

Dubbo工作原理

  

  • Provider      
    • 暴露服务方称之为“服务提供者”。
  • Consumer      
    • 调用远程服务方称之为“服务消费者”。
  • Registry      
    • 服务注册与发现的中心目录服务称之为“服务注册中心”。
  • Monitor      
    • 统计服务的调用次调和调用时间的日志服务称之为“服务监控中心”。

 

例子     服务端  

    定义一个Service Interface:(    HelloService.java     ) 

package com.alibaba.hello.api;
public interface HelloService{
  String sayHello(String name);
}

接口的实现类:(      HelloServiceImpl.java       )              

package com.alibaba.hello.impl;
import com.alibaba.hello.api.HelloService;
public class HelloServiceImpl implements HelloService{
  public String sayHello(String name){
    return "Hello " + name;
  }
}
Spring配置:(        provider.xml
<?xml version="1.0" encoding="UTF-8"?>
<beans ......>
  <!-- Application name -->
  <dubbo:application name="hello-world-app" />
  <!-- registry address, used for service to register itself -->
  <dubbo:registry address="multicast://224.5.6.7:1234" />
  <!-- expose this service through dubbo protocol, through port 2 0 8 8 0 -->
  <dubbo:protocol name="dubbo" port="2 0 8 8 0" />
  <!-- which service interface do we expose? -->
  <dubbo:service interface="com.alibaba.hello.api.HelloService" ref="helloService" />
  <!-- designate implementation -->
  <bean id="helloService" class="com.alibaba.hello.impl.HelloServiceImpl" />
</beans>

测试代码:( Provider.java

import org.springframework.context.support.ClassPathXmlApplicationContext;
public class Provider {
public static void main(String[] args) {
  ClassPathXmlApplicationContext context = new ClassPathXmlApplicationContext(new String[] {"provider.xml"}); //启动成功,监听端口为2 0 8 8 0
  System.in.read(); // 按任意键退出
  }
}

客户端

Spring配置文件:( consumer.xml )

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns=......>
<!-- consumer application name -->
<dubbo:application name="consumer-of-helloworld-app" />
<!-- registry address, used for consumer to discover services -->
<dubbo:registry address="multicast://224.5.6.7:1234" />
<!-- which service to consume? -->
<dubbo:reference id="helloService" interface="com.alibaba.hello.api.HelloService" />
</beans>
客户端测试代码:( Consumer.java
import org.springframework.context.support.ClassPathXmlApplicationContext;
import com.alibaba.hello.api.HelloService;
public class Consumer {
  public static void main(String[] args) {
    ClassPathXmlApplicationContext context = new ClassPathXmlApplicationContext(new String[] {"consumer.xml"});
    HelloService helloService = (HelloService)context.getBean("helloService"); // get service invocation proxy
    String hello = helloService.sayHello("world"); // do invoke!
    System.out.println( hello ); // cool, how are you~
  }
}

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值