RMI中的rmic是什么?
我想知道 RMI 中的 rmic 是什么以及它如何为我创建代理。
I like to know what is rmic in RMI and how does it create proxies for me..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我想知道 RMI 中的 rmic 是什么以及它如何为我创建代理。
I like to know what is rmic in RMI and how does it create proxies for me..
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
要回答您的问题,
rmic
[Solaris、Windows]是 Java RMI 编译器,它使用 JRMP 或 IIOP 协议为远程对象生成存根、骨架和联系。还生成 OMG IDL。关于如何,您的问题有点模糊,但答案可能是它符合 JRMP 协议或 IIOP 协议或 CORBA IDL 规范。请查看提供的链接以获取这些不同概念的描述。如果这对您来说听起来像中文,您可能应该查看 RMI 教程< /a>.本教程的第一章介绍了 RMI 概念。
另请注意(来自教程):
因此,如果您的 RMI 服务器不必支持在 5.0 之前版本的 VM 上运行的客户端,您实际上无需担心
rmic
。另一个很好的入门资源是... Java RMI 入门,RMI 的 Hello World 示例。
如果您想获取更多信息,请查看 远程方法调用规范。
To answer your question,
rmic
[Solaris, Windows] is the Java RMI compiler and it generates stubs, skeletons, ties for remote objects using either the JRMP or IIOP protocols. Also generates OMG IDL. Regarding the how, your question is a bit vague but the answer might be something like it complies to the JRMP protocol or IIOP protocol or CORBA IDL specification.Have look at the provided link(s) for a description of these various concepts. If this sounds like Chinese to you, you should probably look at the RMI tutorial. The first chapter of the tutorial covers RMI concepts.
Also note that (from the tutorial):
So if your RMI server doesn't have to support clients running on pre-5.0 VMs, you actually don't need to worry about
rmic
.Another good resource to get started is... Getting Started Using Java RMI, a Hello World sample for RMI.
If you want to get more information, check out the Remote Method Invocation spec.
rmic 为远程对象生成存根、骨架和连接类使用 JRMP 或 IIOP 协议。还生成 OMG IDL。
rmic generates stub, skeleton, and tie classes for remote objects using either the JRMP or IIOP protocols. Also generates OMG IDL.