欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

基于Spring的RMI远程调用备忘

程序员文章站 2022-07-11 17:56:04
...
基于RMI远程通讯的一点说明:

1.RMI 服务器
Spring 配置:

<bean class="org.springframework.remoting.rmi.RmiServiceExporter">
<!-- RMI服务名 -->
<property name="serviceName" value="MyRMIService" />
<!-- Service实现类 -->
<property name="service" ref="MyRMIServiceImpl" />
<!-- Service实现接口 -->
<property name="serviceInterface" value="com.service.MyServiceInterface" />
<!-- RMI注册端口号 -->
<property name="registryPort" value="9478" />
<!-- 服务通信端口,缺省为0 -->
<property name="servicePort" value="9477" />
</bean>

应用服务器会维护RMI注册,我们最好不要干扰它。业务就绑定在rmi://HOST:9478/MyRMIService上。我们将在客户端使用URL来连接业务。

2.RMI 客户端

public Object getRemoteService() {
String serviceUrl = "rmi://" + 远程服务IP + ":" + 远程服务注册端口 + "/" + 远程服务名;
RmiProxyFactoryBean rmiProxyFactoryBean = new RmiProxyFactoryBean();
rmiProxyFactoryBean.setServiceInterface(MyServiceInterface.class);
rmiProxyFactoryBean.setServiceUrl(serviceUrl);
rmiProxyFactoryBean.setLookupStubOnStartup(false);
rmiProxyFactoryBean.setRefreshStubOnConnectFailure(true);
rmiProxyFactoryBean.afterPropertiesSet();
return rmiProxyFactoryBean.getObject();
}

客户端通过调用getRemoteService()方法获得远程接口对象。
相关标签: remoting