在 Netbeans 中使用 RMIC
我在netbeans 6.5中编写了rmi服务器代码。 如何在 netbeans 6.5 中使用 rmic 以便创建 server_stub 类?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我在netbeans 6.5中编写了rmi服务器代码。 如何在 netbeans 6.5 中使用 rmic 以便创建 server_stub 类?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(4)
如果您使用 Spring 的远程代理 (
RmiProxyfactoryBean
),则根本不需要生成任何存根/骨架类。 Spring 在幕后为您施展所有魔法。 您甚至不需要实现Remote
接口!请参阅此处的文档
If you use Spring's remote proxying (
RmiProxyfactoryBean
), you don't need to generate any stub/skel classes at all. Spring just does all the magic for you behind the scenes. You don't even need to implement theRemote
interface!See the docs here
为什么不编辑位于项目根目录中的标准 build.xml? 包含 Rmic Ant 任务。 每次您在 netbeans 中构建项目时,这都会自动 rmic 您的类。
Why not edit the standard build.xml located in the project root directory? Include the Rmic Ant task. This will automatically rmic your classes every time you build a project in netbeans.
您不能通过 netbeans 使用 rmic。 您需要通过在命令行运行 rmic 命令来手动生成服务器存根。 但如果是 Eclipse,您可以借助 rmi 插件从 ide 生成存根。
you cannot use rmic through netbeans. you need to generate the server stub manually by running the rmic command at the command line. but in case of eclipse you can generate the stub from the ide with the help of rmi plugin.
您必须将以下代码插入到您的 build.xml 文件中。
然后右键-> 构建.xml-> 运行目标-> 其他目标-> startRMI
这将启动 RMI 注册表。
You have to insert the below code into your build.xml file.
Then right click -> build.xml -> Run target -> Other targets -> startRMI
This will start the RMI registry.