rmic还需要吗?
java 1.5 或更高版本不需要 rmi 接口编译器,并且仅编译使用 javac 定义 UnicastRemoteObject 的 java 文件就足够了吗?Rmic 仍然可以工作,如果您给它类文件,它会生成一个存根类文件远程对象的实现。
Is it true that the rmi interface compiler is not needed for java 1.5 or newer and that just compiling the java file where the UnicastRemoteObject is defined with javac is enough?Rmic still works and it generates a stub class file if you give it the class file of the implementation of the remote object.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
根据 RMI 教程:
http://download.oracle.com/javase/tutorial /rmi/overview.html
According to the RMI tutorial:
http://download.oracle.com/javase/tutorial/rmi/overview.html
请参阅
UnicastRemoteObiect
的 Javadoc 前言。您可以在特定情况下避免使用 rmic,即当您构建或导出提供端口号参数(甚至为零)的远程对象时,出于文档中描述的原因。See the preamble to the Javadoc for
UnicastRemoteObiect
. You can avoid usingrmic
under specific circumstances, i.e. when you construct or export the remote object providing a port number parameter (even zero), for reasons described in the documentation.