0

我正在研究 Java(Web)应用程序中数据库的 DAO 实现。只有我遇到了一个小问题。

我当前的代码:

帐户.java:

package beans;

public class Account {
    private int accountId;
    private String name;
    private String password;
    private String email;

    public Account() {

    }

    public Account(final String name, final String password, final String email) {
        this.name = name;
        this.password = password;
        this.email = email;
    }

    public int getAccountId() {
        return accountId;
    }

    public void setAccountId(int accountId) {
        this.accountId = accountId;
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public String getPassword() {
        return password;
    }

    public void setPassword(String password) {
        this.password = password;
    }

    public String getEmail() {
        return email;
    }

    public void setEmail(String email) {
        this.email = email;
    }
}

DAO.java:

package dao;

import java.util.Collection;

public interface DAO<T> {
    public int insert(T t);

    public boolean update(T t);

    public T get();

    public Collection<T> search();

    public boolean delete(T t);
}

AccountDAO.java:

package dao;

import beans.Account;
import java.util.Collection;

public class AccountDAO implements DAO<Account> { 
    @Override
    public int insert(Account t) {
        throw new UnsupportedOperationException("Not supported yet.");
    }

    @Override
    public boolean update(Account t) {
        throw new UnsupportedOperationException("Not supported yet.");
    }

    @Override
    public Account get() {
        throw new UnsupportedOperationException("Not supported yet.");
    }

    @Override
    public Collection<Account> search() {
        throw new UnsupportedOperationException("Not supported yet.");
    }

    @Override
    public boolean delete(Account t) {
        throw new UnsupportedOperationException("Not supported yet.");
    }
}

问题是我很确定我不想在DAO界面中使用已经存在的 SQL 字符串,但是我遇到了如何正确实现的get()问题search()

由于它是一个通用接口,我还不能使用列名,我想将get()andsearch()方法保留在接口中,以确保它们将被实现,除非确实需要从接口中删除它们。

我提出的建议是按范围或未完全填充的 T 类对象进行搜索。因此,如果您想获取 name=x 的帐户,那么您将拥有如下代码:

AccountDAO accountDAO = DAOFactory.getAccountDAO();
Account result = accountDAO.get(new Account(x, null, null));

但我不确定这是否是最好的解决方案,请帮助我。

问候。

4

1 回答 1

0

这就是我解决我的问题的方式:

我创建了一个NativeQueryBasedDAO接受 SQL 查询的抽象类。这样,我可以拥有NativeQueryBasedDAO代表每个 RDBMS(如 MySQL、DB2、PostGres 等)的扩展子类。

在你的情况下,你会有这样的效果:

public abstract class NativeQueryBasedDAO<T> implements DAO<T> {

    private Connection connection;
    private String schemaName;
    private String tableName;

    protected NativeQueryBasedDAO(Connection connection, String tableName) {
        this(connection, null, tableName);
    }

    protected NativeQueryBasedDAO(Connection connection, String schemaName, String tableName) {
        if (schemaName == null) {
            this.schemaName = "";
        } else {
            this.schemaName = schemaName;
        }
        this.connection = connection;
        this.tableName = tableName;
    }

    protected final String getTableName() {
        return tableName;
    }

    protected final String getSchemaName() {
        return schemaName;
    }

    protected final Connection getConnection() {
        return connection;
    }
}

上面的字段可以帮助你在方法上,比如get()你需要根据你的schemaName + tableName.

然后,我将拥有一个Factory<T>创建public T create()对象(在您的情况下为帐户)的。

因此,基于一些Parameters, you can pass/generate a将生成对象的 Factory`。

然后,您可以修改您DAO的执行一个get(Criteria criteria)构建一个Factory带有参数的参数来填充以创建您的对象。

简而言之,这不是一个简单的解决方案(因为它必须是健壮的,并且可以根据您的要求而增长)。诸如 Hibernate 或 JPA 实现(例如 TopLink)之类的 ORM 可以处理这个问题。

我希望这有帮助。

于 2013-06-28T12:24:34.310 回答