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 服务器的连接,我们需要在服务器的启动参数中指定-Djava.rmi.server.hostname=hostxxx ,并在客户端的 hosts 文件中添加 hosts 条目,如下所示:
x.x.x.x hostxxx
由于每个客户端都需要添加hosts条目,这样做很不方便。
我只是想知道 CORBA(或其他 RPC 解决方案)解决此问题的方法是什么?他们是否还需要像 RMI 一样修改主机条目?
该系统属性仅适用于 RMI/JRMP。我不知道有什么方法可以为 CORBA 做这件事,我已经看过了。