RMI理解问题
每个人。 我对 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当您导出远程对象时,RMI 会创建存根。如果它扩展了 UnicastRemoteObject,则会在构造时发生这种情况,否则,当您调用exportObject() 时,就会发生这种情况。
由于您没有使用 rmic,因此存根类是一个动态代理:java.lang.reflect.Proxy。客户端已在 JRE 中拥有该类。因此,客户端只需要远程接口类和它所依赖的任何应用程序类,依此类推,直到关闭。
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().
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.