RMI中的rmic是什么?

发布于 2024-08-18 07:12:26 字数 39 浏览 3 评论 0原文

我想知道 RMI 中的 rmic 是什么以及它如何为我创建代理。

I like to know what is rmic in RMI and how does it create proxies for me..

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

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

发布评论

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

评论(2

一个人的夜不怕黑 2024-08-25 07:12:26

要回答您的问题,rmic [SolarisWindows]是 Java RMI 编译器,它使用 JRMP 或 IIOP 协议为远程对象生成存根、骨架和联系。还生成 OMG IDL。关于如何,您的问题有点模糊,但答案可能是它符合 JRMP 协议或 IIOP 协议或 CORBA IDL 规范。

请查看提供的链接以获取这些不同概念的描述。如果这对您来说听起来像中文,您可能应该查看 RMI 教程< /a>.本教程的第一章介绍了 RMI 概念。

另请注意(来自教程):

对于 Java Platform Standard Edition 5.0 之前的版本,需要使用 rmic 编译器执行额外的步骤来构建存根类。不过,这一步不再需要了。

因此,如果您的 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):

With versions prior to Java Platform, Standard Edition 5.0, an additional step was required to build stub classes, by using the rmic compiler. However, this step is no longer necessary.

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.

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