Spring RMI 通过什么协议?
我正在使用带有 rmi 的 spring 远程处理。应用程序运行良好。但有一件事对我来说完全不清楚:spring 在其 rmi 支持中使用什么协议?
更新:默认是JRMP,我知道这一点。 JRMP 或 IIOP 与 Spring Remoting 搭配,这就是问题所在!
I'm using spring remoting with rmi. Application works fine. But one thing in totally unclear for me: what protocol does spring use in its rmi support?
Update: Default is JRMP, I know this. JRMP or IIOP goes with Spring Remoting this is the question!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
RMI 是它自己的协议:http://en.wikipedia.org/wiki/Java_remote_method_invocau
RMI is its own protocol: http://en.wikipedia.org/wiki/Java_remote_method_invocation
RMI 使用 Java 序列化通过组件之间的线路发送对象。
RMI uses Java serialization to send objects over the wire between components.