单独的 rmiregistry 和服务器应用程序

发布于 2024-08-18 02:22:48 字数 361 浏览 1 评论 0原文

我正在开发一个在服务器上启动 rmiregistry 的基本应用程序:

try {
            // create the registry and bind the name and object.
            registry = LocateRegistry.createRegistry(thisPort);
            registry.rebind("rmiServer", this);
        }
        catch (RemoteException e) {
            throw e;
        }

我想在另一台计算机上运行注册表。这个可以分开吗?

I'm developing a basic application that starts the rmiregistry at the server:

try {
            // create the registry and bind the name and object.
            registry = LocateRegistry.createRegistry(thisPort);
            registry.rebind("rmiServer", this);
        }
        catch (RemoteException e) {
            throw e;
        }

I want to run the registry on another machine. Is it possible to separate this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

茶花眉 2024-08-25 02:22:48

我想在另一个上运行注册表
机器。是否可以分开
这个?

这是可能的。如果注册表在不同的计算机上运行,​​您可以使用 LocateRegistry.getRegistry(主机,端口)

I want to run the registry on another
machine. Is it possible to separate
this?

Its possible. If the registry is running on a different machine, you can locate it using LocateRegistry.getRegistry(host, port)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文