RMI 客户端和服务器程序
我使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
将您的应用程序拆分为三个工件/项目/JAR:
客户端
- 通过 RMI API 调用服务器的代码。取决于api
server
- 在服务器端实现 API。显然client
并不依赖于这个工件api
-client
和server
都依赖于 API:client
使用,server
实现。这种方法允许您独立开发
客户端
和服务器
。此外,更改api
也不容易被忽略,因为它是一个单独的项目。Split your application into three artifacts/projects/JARs:
client
- code that calls the server via RMI API. Depends onapi
server
- implement the API on the server side. Obviouslyclient
is not dependent on this artifactapi
- bothclient
andserver
depend on API:client
uses,server
implements.This approach allows you to develop both
client
andserver
independently. Also changing theapi
can't easily be missed since it is a separate project.您要运行的每个类中都应该有 main 方法。创建主要方法并编译文件后,只需使用 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.