package io.github.baijifeilong.rmi; import java.rmi.Remote; import java.rmi.RemoteException; public interface ISayHelloService extends Remote { String hello(String name) throws RemoteException; }
服务端
package io.github.baijifeilong.rmi; import java.rmi.RemoteException; import java.rmi.registry.LocateRegistry; import java.rmi.server.UnicastRemoteObject; public class RmiServer { public static void main(String[] args) throws RemoteException { ISayHelloService sayHelloService = new SayHelloService(); UnicastRemoteObject.exportObject(sayHelloService, 0); LocateRegistry.createRegistry(1099).rebind("SayHello", sayHelloService); } static class SayHelloService implements ISayHelloService { @Override public String hello(String name) { return "hello, " + name; } } }
客户端
package io.github.baijifeilong.rmi; import java.rmi.NotBoundException; import java.rmi.RemoteException; import java.rmi.registry.LocateRegistry; import java.rmi.registry.Registry; public class RmiClient { public static void main(String[] args) throws RemoteException, NotBoundException { // RMI默认端口1099,不需要显式声明 Registry registry = LocateRegistry.getRegistry(); ISayHelloService sayHelloService = (ISayHelloService) registry.lookup("SayHello"); System.out.println(sayHelloService.hello("word")); } }
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持 码农网
猜你喜欢:本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
阿里巴巴正传:我们与马云的“一步之遥”
方兴东、刘伟 / 江苏凤凰文艺出版社 / 2015-1 / 45.00
十几年来,方兴东与马云每年一次,老友聚首,开怀畅谈,阿里上市前,作者再次与马云深度对话,阿里上市前的布局,深入探讨了一系列人们关心的话题。 本书忠实记录了阿里壮大、马云封圣的历史。作者通过细致梳理和盘点,对阿里巴巴的15年成长史进行了忠实回顾。从海博翻译社到淘宝网,从淘宝商城到天猫,从支付宝到阿里云计算,从拉来软银的第一笔投资到纽交所上市,作者对其中涉及到的人物、细节都有生动展现;对于马云、......一起来看看 《阿里巴巴正传:我们与马云的“一步之遥”》 这本书的介绍吧!