基于Spring的RMI远程调用备忘
程序员文章站
2022-07-11 17:56:04
...
基于RMI远程通讯的一点说明:
1.RMI 服务器
Spring 配置:
应用服务器会维护RMI注册,我们最好不要干扰它。业务就绑定在rmi://HOST:9478/MyRMIService上。我们将在客户端使用URL来连接业务。
2.RMI 客户端
客户端通过调用getRemoteService()方法获得远程接口对象。
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()方法获得远程接口对象。
下一篇: 拉肚子吃什么食物好,可以缓解腹泻症状
推荐阅读
-
使用Spring Cloud Feign作为HTTP客户端调用远程HTTP服务的方法(推荐)
-
html5-websocket基于远程方法调用的数据交互实现
-
调用远程主机上的 RMI 服务时抛出 java.rmi.ConnectException: Connection refused to host: 127.0.0.1 异常原因及解决方案
-
基于java.rmi的RPC远程方法调用
-
基于spring的rmi缓存问题
-
基于Spring的RMI远程调用备忘
-
基于Spring实现的Rmi, HttpInvoker, Hessian, Web services
-
Spring远程调用HttpClient/RestTemplate的方法
-
Spring RestTemplate实现服务间的远程调用完整代码示例
-
Spring Cloud Feign作为HTTP客户端调用远程HTTP服务的使用