使用 ServiceLocator 时 Locator 方法去哪里?

发布于 2024-11-14 12:30:52 字数 276 浏览 5 评论 0原文

如果我使用带有 ServiceLocator 的单独服务类,我是否还需要在某处定义 Locator 方法?:

T create(Class<? extends T> clazz)
I getId(T domainObject)
T find(Class<? extends T> clazz, I id)
Object getVersion(T domainObject)

它们是否在服务类上?

If I use separate service classes with a ServiceLocator, do I still need to define the Locator methods somewhere?:

T create(Class<? extends T> clazz)
I getId(T domainObject)
T find(Class<? extends T> clazz, I id)
Object getVersion(T domainObject)

Do they go on the service class?

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

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

发布评论

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

评论(1

静谧幽蓝 2024-11-21 12:30:52

一般来说,这两种类型服务于正交的目的:ServiceLocator 查找代码; Locator 查找实体。

使用 ServiceLocator 不会更改声明实体支持方法的位置。实体支持方法仍然在域类型中搜索。

In general, these two types serve orthogonal purposes: A ServiceLocator finds code; a Locator finds entities.

Using a ServiceLocator does not change where the entity support methods are declared. The entity support methods are still searched for in the domain types.

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