更改默认 RMI 端口 (Java)
如何更改默认 RMI 端口 (1099)。 它可以作为 JVM 参数或通过编码,这并不重要。 谢谢。
How can I change the default RMI port (1099). It could be as JVM parameter or via coding, it doesn´t matter. Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以在命令行上指定它。 来自 RMI 教程:
在您的代码中,您使用 LocateRegistry.getRegistry(String host, int port) 覆盖以按主机名和端口查找注册表,如 LocateRegistry.getRegistry(String host, int port) 覆盖com/docs/books/tutorial/rmi/client.html" rel="noreferrer">创建客户端程序 教程部分。 (这同样适用于实现您的服务器。)
You can specify it on the command line. From the RMI Tutorial:
In your code you use the LocateRegistry.getRegistry(String host, int port) override to locate the registry by hostname and port, as explained in the Creating a Client Program section of the tutorial. (The same applies when implementing your server.)
您可以在导出远程对象时指定自己的端口,通过 super(port, ...) 或 exportObject(remote, port, ...) 取决于您是否扩展 UnicastRemoteObject。 如果扩展 Activatable,则会出现类似的带有端口号的 super() 重载。 如果您使用它,您可以在命令行上指定注册表的端口,如果您使用它,则可以通过 LocateRegistry.createRegistry() 指定。
You can specify your own port when exporting your remote object, either via super(port, ...) or exportObject(remote, port, ...) depending on whether you do or don't extend UnicastRemoteObject. If you extend Activatable there are similarly super() overloads with a port number. You can specify the Registry's port on the command line if you use that, otherwise via LocateRegistry.createRegistry() if you use that.