1、创建接口,该接口类在服务端和客户端都必须有。
public interface Serverif extends VersionedProtocol
2、在服务端实现接口类
public class ServerImpl implements Serverif
3、服务端,使用实现的类启动服务,需要定义监听的IP地址和端口
Server server = RPC.getServer(si, SERVERADDRESS, SERVERPORT, 10, true, conf);
server.start();
4、客户端定义远程连接
InetSocketAddress sa = new InetSocketAddress(SERVERADDRESS, SERVERPORT);
5、客户端使用远程连接,通过接口定义,调用服务端具体实现
Serverif si = (Serverif) RPC.getProxy(Serverif.class, versionID, sa, conf);
return si.method(args);