在 Java 中创建一个新包来发出 Web 服务请求,我应该称呼它什么?

发布于 2024-09-25 07:28:35 字数 227 浏览 3 评论 0原文

这是一个新手问题,但我对 Java 不熟悉。我在想:

com.company.webservices

com.company.webserviceretriever

com.company.webservice.retriever

任何想法或意见关于此事?

Bit of a newbie question, but I'm unfamiliar with Java. I'm thinking either:

com.company.webservices

or

com.company.webserviceretriever

or

com.company.webservice.retriever

Any thoughts or opinions on the matter?

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

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

发布评论

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

评论(1

孤寂小茶 2024-10-02 07:28:35

没有这样硬性规定。但是 com.company.service 应该具有接口和 com.company.service.impl,您可以在其中实现内部使用 Web 服务的接口。将来,如果您想将实现从 Web 服务更改为其他服务,它仍然有意义,并且您的服务客户端不应该知道它。

There is no such hard and fast rule. But com.company.service should have the interface and com.company.service.impl in which you implement the interface which internally consumes the web service. In future if you want to change the implementation from web service to something else it will still make sense and your service client should have no idea about it.

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