Dubbo
Dubbo是阿里巴巴SOA服务化治理方案的核心框架,每天为2,000+个服务提供3,000,000,000+次访问量支持,并被广泛应用于阿里巴巴集团的各成员站点。Dubbo是一个分布式服务框架,致力于提供高性能和透明化的RPC远程服务调用方案,以及SOA服务治理方案。
Dubbo简介
1.1、Dubbo是什么?
Dubbo是一个分布式服务框架,致力于提供高性能和透明化的RPC远程服务调用方案,以及SOA服务治理方案。简单的说,dubbo就是个服务框架,如果没有分布式的需求,其实是不需要用的,只有在分布式的时候,才有dubbo这样的分布式服务框架的需求,并且本质上是个服务调用的东东,说白了就是个远程服务调用的分布式框架
其核心部分包含:
-
- 远程通讯: 提供对多种基于长连接的NIO框架抽象封装,包括多种线程模型,序列化,以及“请求-响应”模式的信息交换方式。
-
- 集群容错: 提供基于接口方法的透明远程过程调用,包括多协议支持,以及软负载均衡,失败容错,地址路由,动态配置等集群支持。
-
- 自动发现: 基于注册中心目录服务,使服务消费方能动态的查找服务提供方,使地址透明,使服务提供方可以平滑增加或减少机器。
1.2. Dubbo能做什么?
- 1.透明化的远程方法调用,就像调用本地方法一样调用远程方法,只需简单配置,没有任何API侵入。
- 2.软负载均衡及容错机制,可在内网替代F5等硬件负载均衡器,降低成本,减少单点。
-
- 服务自动注册与发现,不再需要写死服务提供方地址,注册中心基于接口名查询服务提供者的IP地址,并且能够平滑添加或删除服务提供者。
1.3. dubbo的架构
dubbo架构图如下所示:
节点角色说明:
- Provider: 暴露服务的服务提供方。
- Consumer: 调用远程服务的服务消费方。
- Registry: 服务注册与发现的注册中心。
- Monitor: 统计服务的调用次调和调用时间的监控中心。
- Container: 服务运行容器。
调用关系说明:
- 0 服务容器负责启动,加载,运行服务提供者。
-
- 服务提供者在启动时,向注册中心注册自己提供的服务。
-
- 服务消费者在启动时,向注册中心订阅自己所需的服务。
-
- 注册中心返回服务提供者地址列表给消费者,如果有变更,注册中心将基于长连接推送变更数据给消费者。
-
- 服务消费者,从提供者地址列表中,基于软负载均衡算法,选一台提供者进行调用,如果调用失败,再选另一台调用。
-
- 服务消费者和提供者,在内存中累计调用次数和调用时间,定时每分钟发送一次统计数据到监控中心。
1.4. dubbo使用方法
Dubbo采用全Spring配置方式,透明化接入应用,对应用没有任何API侵入,只需用Spring加载Dubbo的配置即可,Dubbo基于Spring的Schema扩展进行加载。如果不想使用Spring配置,而希望通过API的方式进行调用(不推荐)
Dubbo采用全Spring配置方式,透明化接入应用,对应用没有任何API侵入,只需用Spring加载Dubbo的配置即可,Dubbo基于Spring的Schema扩展进行加载。
提供者
service
package com.ghgcn.dubbo_provide.service;
/**
* 服务提供者接口
* @author Administrator
*
*/
public interface ProviderService {
/**
* 说话方法
* @param name
* @return
*/
public String sayHello(String name);
}
package com.ghgcn.dubbo_provide.service.imp;
import com.ghgcn.dubbo_provide.service.ProviderService;
public class ProviderServiceImp implements ProviderService {
public String sayHello(String name) {
return "Hello "+name+" 好好了 !";
}
}
pom
4.0.0
com.ghgcn
dubbo_provide
0.0.1-SNAPSHOT
4.3.12.RELEASE
UTF-8
1.8
com.alibaba
dubbo
2.5.7
org.springframework
spring
com.101tec
zkclient
0.9
org.springframework
spring-context
${spring.version}
org.springframework
spring-beans
${spring.version}
org.springframework
spring-web
${spring.version}
org.springframework
spring-webmvc
${spring.version}
org.springframework
spring-tx
${spring.version}
org.springframework
spring-context-support
${spring.version}
org.springframework
spring-test
${spring.version}
org.apache.maven.plugins
maven-compiler-plugin
3.2
${jdk.version}
${project.build.sourceEncoding}
org.apache.maven.plugins
maven-war-plugin
2.6
xml
spring.xml
dubbo_provider.xml
测试类
package com.ghgcn.dubbo_provide;
import java.io.IOException;
import org.springframework.context.support.ClassPathXmlApplicationContext;
public class Test {
public static void main(String[] args) {
ClassPathXmlApplicationContext context = new ClassPathXmlApplicationContext(
new String[] {"spring.xml"}); //,"dubbo_provider.xml"
context.start();
System.out.println("提供者服务已注册成功");
System.out.println("请按任意键取消提供者服务");
try {
System.in.read();//让此程序一直跑,表示一直提供服务
} catch (IOException e) {
e.printStackTrace();
}
}
}
不要关闭
消费者
pom
4.0.0
com.ghgcn
dubbo_consumer
0.0.1-SNAPSHOT
4.3.12.RELEASE
UTF-8
1.8
com.ghgcn
dubbo_provide
0.0.1-SNAPSHOT
com.alibaba
dubbo
2.5.7
org.springframework
spring
com.101tec
zkclient
0.9
org.springframework
spring-context
${spring.version}
org.springframework
spring-beans
${spring.version}
org.springframework
spring-web
${spring.version}
org.springframework
spring-webmvc
${spring.version}
org.springframework
spring-tx
${spring.version}
org.springframework
spring-context-support
${spring.version}
org.springframework
spring-test
${spring.version}
org.apache.maven.plugins
maven-compiler-plugin
3.2
${jdk.version}
${project.build.sourceEncoding}
org.apache.maven.plugins
maven-war-plugin
2.6
dubbo-client.xml
测试
package com.ghgcn.dubbo_consumer;
import java.io.IOException;
import org.springframework.context.support.ClassPathXmlApplicationContext;
import com.ghgcn.dubbo_provide.service.ProviderService;
public class ConsumerServiceTest {
@SuppressWarnings("resource")
public static void main(String[] args) {
ClassPathXmlApplicationContext context = new ClassPathXmlApplicationContext(
new String[] { "dubbo-client"
+ ".xml" });
context.start();
ProviderService providerService = (ProviderService) context.getBean("providerService");
System.out.println(providerService.sayHello("刘楠 ooo"));
System.out.println(providerService.sayHello("张三"));
System.out.println(providerService.sayHello("QQ"));
System.out.println(providerService.sayHello("RRR"));
System.out.println("==============执行完成===================");
try {
System.in.read();
} catch (IOException e) {
e.printStackTrace();
}
}
}
结果