使用特定于版本的存根

发布于 2024-12-11 23:38:36 字数 237 浏览 1 评论 0原文

我的项目基于客户端和服务器通信,其中在不同位置,可能存在不同版本的服务器。 客户端根据最近的服务器版本号使用特定的存根文件与其通信。

现在,在编写代码时,在我使用存根的每个地方,我都必须检查存在哪个版本的服务器。这看起来效率很低,因为代码中有很多地方我必须检查存根版本。

限制是客户端周围只有一台服务器。一旦客户端启动,它要通信的服务器就不会改变。 为了进行通信,我们使用 Jax RPC。

有更好的设计建议吗?

My project is based on client and server communication in which at different locations, different version of server may be present.
Client, based on nearest server's version number uses specific stub file to communicate with it.

Now, while writing the code, at every place where i'm using the stub, i've to check which version of server is present. This seems very inefficient because there are many places in the code, where i've to check stub version.

The constraint is that exactly one server is present around the client. And once client has started, the server to which it is going to communicate will not change.
For communication we are using Jax RPC.

Any suggestions for better design?

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

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

发布评论

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

评论(1

人间☆小暴躁 2024-12-18 23:38:36

Could dependency injection help here? Isolate all the logic specific to each server version into separate classes and use a tool such as Google Guice to organize all your specific server version classes into their own modules (i.e. one module per server version). Then, only one check would be required at the beginning to see which module to load.

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