使用 Eclipse 构建 Java RMI 应用程序(如何做 rmic)
我正在尝试开发一个 Java RMI 应用程序,发现告诉 eclipse 使用 rmic 编译它并不简单。
是否有任何可用的插件(如果有,您推荐哪一个)?
或者
有什么方法可以实现这一点?
谢谢。
I'm trying to develop a Java RMI application and found out that it's not straight forward to tell eclipse to compile it using rmic.
Are there any available addons (if so which one do you recommend)?
or
what are the ways to accomplish this?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
从 Java 5 开始,无需使用
rmic
工具,因为存根现在是动态生成的。我建议遵循更新后的教程,该教程更适合 Java 5 或更高版本的 RMI 实现。遵循 RMI Guide for Java 5 应该会给你一个不错的结果开始。As of Java 5 there is no need to use the
rmic
tool since stubs are now dynamically generated. I'd suggest following an updated tutorial which is more geared towards RMI implementations for Java 5 or greater. Following the RMI Guide for Java 5 should give you a decent start.您有用于 RMI 应用程序的 Eclipse 插件,如下所示: http://www.genady.net/rmi /index.html
编辑:
另外,一些免费插件如下: http://sourceforge.net/projects/rmi-eclipse/
You have plugins for eclipse for RMI applications like this one: http://www.genady.net/rmi/index.html
Edit:
Also, some free plugins like this: http://sourceforge.net/projects/rmi-eclipse/