RMI 客户端和服务器程序

发布于 2024-12-07 01:51:00 字数 86 浏览 0 评论 0原文

我使用 RMI 实现了客户端和服务器程序。我在同一个项目中编写了服务器和客户端类。但现在我想单独运行这个客户端和服务器程序(作为两个项目)。那么我该怎么做呢?

I implemented a client and server programms using RMI. I wrote this both server and client classes in same project. But now I want to run this client and server programms separately (as two projects). So how can I do this?

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

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

发布评论

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

评论(2

ゞ花落谁相伴 2024-12-14 01:51:00

将您的应用程序拆分为三个工件/项目/JAR:

  • 客户端 - 通过 RMI API 调用服务器的代码。取决于 api
  • server - 在服务器端实现 API。显然 client 并不依赖于这个工件
  • api - clientserver 都依赖于 API:client 使用,server 实现。

这种方法允许您独立开发客户端服务器。此外,更改 api 也不容易被忽略,因为它是一个单独的项目。

Split your application into three artifacts/projects/JARs:

  • client - code that calls the server via RMI API. Depends on api
  • server - implement the API on the server side. Obviously client is not dependent on this artifact
  • api - both client and server depend on API: client uses, server implements.

This approach allows you to develop both client and server independently. Also changing the api can't easily be missed since it is a separate project.

自演自醉 2024-12-14 01:51:00

您要运行的每个类中都应该有 ma​​in 方法。创建主要方法并编译文件后,只需使用 IDE 或命令“java”运行每个文件即可。您不需要两个项目来做到这一点。

You should have main method in each class you want to run. After creating main methods and compiling files, simply run each file, using your IDE or command "java". You don't need two projects to do this.

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