RPC是远程过程调用的简称,广泛应用在大规模分布式应用中,作用是有助于系统的垂直拆分,使系统更易拓展。Java中的RPC框架比较多,各有特色,广泛使用的有RMI、Hessian、Dubbo等。RPC还有一个特点就是能够跨语言。
1、RMI(远程方法调用)
JAVA自带的远程方法调用工具,不过有一定的局限性,毕竟是JAVA语言最开始时的设计,后来很多框架的原理都基于RMI,RMI的使用如下:
对外接口
1
2
3
4
5
|
public String queryName(String no) throws RemoteException;
}
|
服务实现
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
|
import
java.rmi.RemoteException;
import
java.rmi.server.UnicastRemoteObject;
// 服务实现
public
class
ServiceImpl
extends
UnicastRemoteObject
implements
IService {
/**
*/
private
static
final
long
serialVersionUID = 682805210518738166L;
/**
* @throws RemoteException
*/
protected
ServiceImpl()
throws
RemoteException {
super
();
}
/* (non-Javadoc)
* @see com.suning.ebuy.wd.web.IService#queryName(java.lang.String)
*/
@Override
public
String queryName(String no)
throws
RemoteException {
// 方法的具体实现
System.out.println(
"hello"
+ no);
return
String.valueOf(System.currentTimeMillis());
}
}
RMI客户端
[java] view plain copy
import
java.rmi.AccessException;
import
java.rmi.NotBoundException;
import
java.rmi.RemoteException;
import
java.rmi.registry.LocateRegistry;
import
java.rmi.registry.Registry;
// RMI客户端
public
class
Client {
public
static
void
main(String[] args) {
// 注册管理器
Registry registry =
null
;
try
{
// 获取服务注册管理器
registry = LocateRegistry.getRegistry(
"127.0.0.1"
,
8088
);
// 列出所有注册的服务
String[] list = registry.list();
for
(String s : list){
System.out.println(s);
}
}
catch
(RemoteException e) {
}
try
{
// 根据命名获取服务
IService server = (IService) registry.lookup(
"vince"
);
// 调用远程方法
String result = server.queryName(
"ha ha ha ha"
);
// 输出调用结果
System.out.println(
"result from remote : "
+ result);
}
catch
(AccessException e) {
}
catch
(RemoteException e) {
}
catch
(NotBoundException e) {
}
}
}
RMI服务端
[java] view plain copy
import
java.rmi.RemoteException;
import
java.rmi.registry.LocateRegistry;
import
java.rmi.registry.Registry;
// RMI服务端
public
class
Server {
public
static
void
main(String[] args) {
// 注册管理器
Registry registry =
null
;
try
{
// 创建一个服务注册管理器
registry = LocateRegistry.createRegistry(
8088
);
}
catch
(RemoteException e) {
}
try
{
// 创建一个服务
ServiceImpl server =
new
ServiceImpl();
// 将服务绑定命名
registry.rebind(
"vince"
, server);
System.out.println(
"bind server"
);
}
catch
(RemoteException e) {
}
}
}
|
2、Hessian(基于HTTP的远程方法调用)
基于HTTP协议传输,采用的是二进制RPC协议,非常轻量级 ,且速度较快。在性能方面还不够完美,负载均衡和失效转移依赖于应用的负载均衡器,Hessian的使用则与RMI类似,区别在于淡化了Registry的角色,通过显示的地址调用,利用HessianProxyFactory根据配置的地址create一个代理对象,另外还要引入Hessian的Jar包。
3、Dubbo(淘宝开源的基于TCP的RPC框架)
基于Netty的高性能RPC框架,是阿里巴巴开源的,总体原理如下:
4、Thrift 是由 Facebook 开源的一个 RPC 框架,现在已经挂在 apache.org 下了。主要的几个好处:
1. 支持非常多语言,包括在 WEB 开发中很常用的 PHP,以及最重要的 C++/Python/Java 等 WEB后端常用语言,当然,还包括很 cool 的 Ruby、Erlang。
2. 完整的 RPC 框架实现,用脚本生成通讯相关的框架代码,开发者只需要集中精力处理好 业务逻辑。比如搭建一个 Hello World Service 只需要几分钟。
3.拥有被 Facebook、Last.fm 等不少大规模应用验证过的高性能和可用性。
5、当然,还有Hetty,它是一款构建于Netty和Hessian基础上的高性能的RPC框架。