RMI理解问题

发布于 2024-10-15 11:51:22 字数 92 浏览 2 评论 0原文

每个人。 我对 RMI 有了大概的了解,但仍需要了解一些细节。 1) 谁生成存根对象:服务器还是 RMI 注册表? 2)客户端从哪里获取存根类来反序列化存根对象? 谢谢。

everyone.
I got general idea about RMI, but still need to understand some details.
1) Who generates stub object: server or RMI registry?
2) Where does client get stub class to deserialize stub object?
Thanks.

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

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

发布评论

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

评论(1

回眸一笑 2024-10-22 11:51:22
  1. 当您导出远程对象时,RMI 会创建存根。如果它扩展了 UnicastRemoteObject,则会在构造时发生这种情况,否则,当您调用exportObject() 时,就会发生这种情况。

  2. 由于您没有使用 rmic,因此存根类是一个动态代理:java.lang.reflect.Proxy。客户端已在 JRE 中拥有该类。因此,客户端只需要远程接口类和它所依赖的任何应用程序类,依此类推,直到关闭。

  1. RMI creates the stub when you export your remote object. If it extends UnicastRemoteObject this occurs on construction, otherwise it occurs when you call exportObject().

  2. As you aren't using rmic, the stub class is a dynamic proxy: java.lang.reflect.Proxy. The client already has that class in the JRE. So the client only needs the remote interface class and any application classes that it depends on, and so on recursively until closure.

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