Java rmi遠(yuǎn)程方法調(diào)用基本用法解析
本文主要介紹Java中的rmi的基本使用
1:項(xiàng)目架構(gòu)
api:主要是接口的定義,url地址,端口號(hào)
rmiconsumer:rmi服務(wù)的調(diào)用者
rmiserver:rmi服務(wù)的提供者
2:pom.xnl
api的pom.xml
<artifactId>api</artifactId><groupId>com.api</groupId><version>1.0</version> rmiconsumer和rmiserver的pom.xml<dependency><groupId>com.api</groupId><artifactId>api</artifactId><version>1.0</version></dependency>
該功能主要是將api的引入到服務(wù)端和客戶端
3:代碼
api的代碼
public interface RMIInterface extends Remote { String RMI_URL = 'rmi://127.0.0.1:9080/RMIServer'; int PORT = 9080; Object sayHello(String name) throws RemoteException;}
rmiserver的代碼
public class RMIInterfaceImpl extends UnicastRemoteObject implements RMIInterface { public RMIInterfaceImpl() throws RemoteException { } @Override public Object sayHello(String name) throws RemoteException { return '你好,你連接成功,姓名:'+name; }}
public class RMIServer { public static void main(String[] args) { try { RMIInterface rmi = new RMIInterfaceImpl(); //注冊(cè)通訊端口 LocateRegistry.createRegistry(RMIInterface.PORT); //注冊(cè)通訊路徑 Naming.bind(RMIInterface.RMI_URL,rmi); System.out.println('rmi服務(wù)端啟動(dòng)成功'); }catch (Exception e){ e.printStackTrace(); } }}
rmiconsumer
public class RMIConsumer { public static void main(String[] args) { //遠(yuǎn)程調(diào)用RMI RMIInterface rmiInterface =null; try{ rmiInterface =(RMIInterface) Naming.lookup(RMIInterface.RMI_URL); Object ret = rmiInterface.sayHello('張先生'); System.out.println('測(cè)試遠(yuǎn)程調(diào)用成功,返回結(jié)果:'+ret); }catch (Exception e){ e.printStackTrace(); } }}
4:總結(jié)
接口必須繼承 Remote
接口的實(shí)現(xiàn)類必須繼承 UnicastRemoteObject
以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持好吧啦網(wǎng)。
相關(guān)文章:
1. 將properties文件的配置設(shè)置為整個(gè)Web應(yīng)用的全局變量實(shí)現(xiàn)方法2. xml中的空格之完全解說(shuō)3. React實(shí)現(xiàn)一個(gè)倒計(jì)時(shí)hook組件實(shí)戰(zhàn)示例4. PHP字符串前后字符或空格刪除方法介紹5. 低版本IE正常運(yùn)行HTML5+CSS3網(wǎng)站的3種解決方案6. 得到XML文檔大小的方法7. 淺談SpringMVC jsp前臺(tái)獲取參數(shù)的方式 EL表達(dá)式8. asp中response.write("中文")或者js中文亂碼問(wèn)題9. Jsp中request的3個(gè)基礎(chǔ)實(shí)踐10. css進(jìn)階學(xué)習(xí) 選擇符
