单独的 rmiregistry 和服务器应用程序
我正在开发一个在服务器上启动 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是可能的。如果注册表在不同的计算机上运行,您可以使用 LocateRegistry.getRegistry(主机,端口)
Its possible. If the registry is running on a different machine, you can locate it using LocateRegistry.getRegistry(host, port)