使用 ServiceLocator 时 Locator 方法去哪里?
如果我使用带有 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
一般来说,这两种类型服务于正交的目的:
ServiceLocator
查找代码;Locator
查找实体。使用
ServiceLocator
不会更改声明实体支持方法的位置。实体支持方法仍然在域类型中搜索。In general, these two types serve orthogonal purposes: A
ServiceLocator
finds code; aLocator
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.