将搜索模型转移到 dao 的模式
我们有一个 dao 作为项目(jar 文件)。
客户端使用其接口和工厂来操作数据库。
除了标准的 CRUD 操作之外,dao 还允许您通过某些搜索条件来搜索实体。
表示此标准的最佳方式是什么?
在这种情况下,传输对象的模式是否合适?
客户端应该如何创建SearchModel实例?
请分享。
问候。
We have a dao as a project (jar file).
Clients use its interfaces and factories to operate with database.
Alongside with standard CRUD operations, dao allows you to search an entity by some search criteria.
What is the best way to represent this criteria?
Is transfer object appropriate pattern in this situation?
How should client create SearchModel instance?
Please, share.
Regards.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我通常使用通用 DAO:
这允许我使用带有绑定参数的命名查询和示例查询。我发现它足够灵活,可以满足我的大部分需求。
I usually use a generic DAO:
This allows me to use named queries with bound parameters and query by example. I've found it to be flexible enough to satisfy most of my needs.