Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在做一个小项目,想知道 Java RMI 中的通信是在哪种技术之上实现的。更准确地说:通信 RMI 客户端/服务器之间的“链接”是如何实现的?他们使用套接字(TCP/UDP)吗?
所有的 RMI 协议(JRMP、IIOP、JERI 等)都是通过 TCP 套接字实现的,并且 JRMP 和 JERI(至少)也在对象序列化上分层。
是的,与 IIOP 一起使用。您可以在以下位置找到更多信息