Rpc框架,来为模块间远程功能交互提供⽀撑;
这个Rpc框架中有诸如RpcServer、RpcService、RpcSystem、RpcEndpoint等⼤量设计封装;
1. 基本概念
RPC:远程过程调⽤(Remote Procedure Call);
• ⼴义上的远程过程调⽤,代指任意两个系统之间的功能调⽤;
• 狭义上的RPC,则特指A系统在调⽤B系统功能时,看起来就像在调⽤本地系统的功能;
⽐如在A的某个模块类ModuleA中,调⽤远程系统B的模块ModuleB的某⽅法如f1
class ModuleA{
ModuleB moduleB;
public ModuleA(){
moduleB = GateWayUtils.get(ModuleB.class,...);
}
public void getUserInfo(String name){
UserInfo userInfo = moduleB.f1(name);
}
}
2. 原始级别的远程请求
反射
3、RPC远程请求
动态代理