java rmi 实例_Java RMI 入门案例

Java Remote Method Invocation(Java RMI) 是一个 Java API, 执行远程方法的调用,相当于 Remote Procedure Calls(RPC)。Java RMI 支持直接传输序列化的 Java 类,以及分布式的垃圾回收。

案例概况

实现一个简单的 Java RMI 可通过以下四步骤:

1. 启动 rmiregistry

2. 定义服务接口,实现服务接口,通过 rmic 工具创建存根文件( stub )

3. 实现服务端功能,并启动

4. 实现客户端功能,并调用服务端服务

具体实现

1. 启动 rmiregistry

grs:~ grs$ rmiregistry

2. 定义服务接口,实现服务接口,通过 rmic 工具创建存根文件( stub )

定义服务接口:

packageservice;importjava.rmi.Remote;importjava.rmi.RemoteException;public interface GreetService extendsRemote {

String sayHello(String name)throwsRemoteException;

}

实现服务接口:

packageservice;importjava.rmi.RemoteException;importjava.rmi.server.UnicastRemoteObject;public class GreetServiceImpl extends UnicastRemoteObject implementsGreetService {static final long serialVersionUID = 1L;public GreetServiceImpl() throwsRemoteException {super();

}

@Overridepublic String sayHello(String name) throwsRemoteException {return "Hello - " +name;

}

}

根据编译后的 GreetServiceImpl,使用 rmic 生成存根文件

grs:bin grs$ rmic service.GreetServiceImpl

执行后,目录如下

grs:bin grs$ tree

.

└── service

├── GreetService.class

├── GreetServiceImpl.class

└── GreetServiceImpl_Stub.class3 directories, 5files

grs:bin grs$

3. 实现服务端功能,并启动

packageserver;importjava.net.MalformedURLException;importjava.rmi.AlreadyBoundException;importjava.rmi.Naming;importjava.rmi.RemoteException;importjava.rmi.registry.LocateRegistry;importservice.GreetServiceImpl;public classServer {public static voidmain(String[] args){try{

LocateRegistry.createRegistry(1098);

Naming.bind("rmi://127.0.0.1:1098/GreetService", newGreetServiceImpl());

}catch(RemoteException e) {

e.printStackTrace();

}catch(MalformedURLException e) {

e.printStackTrace();

}catch(AlreadyBoundException e) {

e.printStackTrace();

}

}

}

编译后,服务端文件目录结构如下:

grs:bin grs$ tree

.

├── server

│   └── Server.class└── service

├── GreetService.class└── GreetServiceImpl.class

2 directories, 3files

grs:bin grs$

启动服务端

grs:bin grs$ java -server server.Server

4. 实现客户端功能,并调用服务端服务

packageclient;importjava.net.MalformedURLException;importjava.rmi.Naming;importjava.rmi.NotBoundException;importjava.rmi.RemoteException;importservice.GreetService;public classClient {public static voidmain(String[] args){try{

String name= "rmi://127.0.0.1:1098/GreetService";

GreetService greetService=(GreetService) Naming.lookup(name);

System.out.println(greetService.sayHello(" Thhhhhhh "));

}catch(MalformedURLException e) {

e.printStackTrace();

}catch(RemoteException e) {

e.printStackTrace();

}catch(NotBoundException e) {

e.printStackTrace();

}

}

}

编译后文件目录结构如下

grs:bin grs$ tree

.

├── client

│   └── Client.class

└── service

├── GreetService.class

└── GreetServiceImpl_Stub.class2 directories, 3files

grs:bin grs$

客户端调用远程端方法

grs:bin grs$ java -client client.Client

Hello-Thhhhhhh

grs:bin grs$

参考资料:

[chapter 18] Distributed Computing : remote deployment with RMI, Head First Java

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值