将搜索模型转移到 dao 的模式

发布于 2024-09-02 20:20:00 字数 212 浏览 3 评论 0原文

我们有一个 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 技术交流群。

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

发布评论

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

评论(1

风渺 2024-09-09 20:20:00

我通常使用通用 DAO:

package persistence;

import java.io.Serializable;
import java.util.List;

public interface GenericDao<T, K extends Serializable>
{
    T find(K id);
    List<T> find();
    List<T> find(T example);
    List<T> find(String queryName, String [] paramNames, Object [] bindValues);

    K save(T instance);
    void update(T instance);
    void delete(T instance);
}

这允许我使用带有绑定参数的命名查询和示例查询。我发现它足够灵活,可以满足我的大部分需求。

I usually use a generic DAO:

package persistence;

import java.io.Serializable;
import java.util.List;

public interface GenericDao<T, K extends Serializable>
{
    T find(K id);
    List<T> find();
    List<T> find(T example);
    List<T> find(String queryName, String [] paramNames, Object [] bindValues);

    K save(T instance);
    void update(T instance);
    void delete(T instance);
}

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.

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