当不同JVM之间需要互相调用的时候,如何让JVMA中调用JVMB中的方法像在本地一样,这就出现了RMI-Remote Method Invoke
不同的JVM既可以指同一机器上的不同的JVM,也可以值不同机器上的JVM
至于什么存根、骨架这些,我觉得很难让人记住并且这两个词也不容易望文生义,所以这里借助目前流行的微服务的概念说一下。
如果对微服务有所了解的,RMI的调用过程其实和它很类似。
如果真的想要了解其中的各种细节,强烈推荐阅读Head First 设计模式一书中的代理模式章节,里面生动详细介绍了RMI的基本原理和细节
public interface RmiServerInterface extends Remote { /** * 所有提供RMI的方法,都要抛出RemoteException,否则会报 * Exception "remote object implements illegal remote interface"? * 错误 * @return * @throws RemoteException */ String sayHello() throws RemoteException; }
public class RmiInterfaceImpl extends UnicastRemoteObject implements RmiServerInterface{ public RmiInterfaceImpl() throws RemoteException{ } @Override public String sayHello() { return "hello, I'm Remote JVM Server"; } }
public class Server { public static void main(String[] args) throws RemoteException { // 启动注册中心 Registry registry = LocateRegistry.createRegistry(2001); try { // 绑定服务 registry.bind("hello", new RmiInterfaceImpl()); System.err.println("Server ready"); } catch (AlreadyBoundException e) { System.out.println("Server bind fail" + e.getMessage()); } } }
public class RmiClient { public static void main(String[] args) { try { // 查找名字必须为在注册中心注册的名字 RmiServerInterface hello = (RmiServerInterface) Naming.lookup("rmi://localhost:2001/hello"); System.out.println("接收到服务器端的接口的返回信息是: " + hello.sayHello() +" "+ hello.getClass().getName()); } catch (RemoteException | NotBoundException | MalformedURLException e) { System.out.println("Connect Server fail"+ e.getMessage()); } } }
说明:按照官方文档进行编码,总是在设置codebase那里有问题