我无法在java

时间:2016-06-07 04:48:13

标签: java dao data-access-object

我一直试图了解DAO模式,但现在我还没有成功。可能是因为我无法应用我在互联网上找到的问题而尝试解决问题。我想封装数据库,做正确的事。

到目前为止我做到了这一点,但我觉得它很无用。

我的DTO课程:

   public class PersonDTO{
        final public static String TABLE = "PEOPLE";
        private int id;
        private String name;
        public int getId() {
            return id;
        }
        public void setId(int id) {
            this.id = id;
        }
        public String getName() {
            return name;
        }
        public void setName(String name) {
            this.name = name;
        }
    }

我的" DAO"

import java.sql.Connection;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;
import java.util.List;

public class PersonDAO {
    private Connection connection;
    private DTO dto;
    private Statement stmt = null;
    private String tableName;
    private Integer id;

    public PersonDAO() {

    }

    public PersonDTO getPerson(int id) {
        connection = ConnectionFactory.getInstance();
        PersonDTO person = new PersonDTO();
        try {
            stmt = connection.createStatement();
            ResultSet rs = stmt.executeQuery("SELECT * FROM " + PersonDTO.TABLE +" WHERE ID = '"+id+"'");
            person.setId(rs.getInt("id"));
            person.setName(rs.getString("age"));
        } catch (SQLException e) {
            e.printStackTrace();
        }
        closeConnection();
        return person;
    }

    public void save() {
        throw new UnsupportedOperationException(); //not implemented yet
    }

    public void update() {
        throw new UnsupportedOperationException(); //not implemented yet
    }

    public void delete() {
        throw new UnsupportedOperationException(); //not implemented yet
    }

    public List<DTO> getDTO(String filter) {
        return null;
    }

    protected void closeConnection() {
        try {
            connection.close();
            connection = null;
        } catch (Exception e) {
            throw new RuntimeException(e);
        }
    }
}

我无法获得:

  1. 它应该是DTO类与之间的关系 DAO课程。
  2. DAO类必须具有从中获取信息的方法 数据库?
  3. 什么是DTO课程,为什么不使用&#34; Person&#34;而不是?。
  4. 这非常令人沮丧。我将不胜感激任何帮助。

2 个答案:

答案 0 :(得分:2)

在你的示例中,DTO可能没用,但一般来说并不是无用的。

DTO对象应该是remote service (RMI/Web service request)的输出。

在进程之间传输数据的对象,以减少方法调用的数量。

参考:http://martinfowler.com/eaaCatalog/dataTransferObject.html

该对象应该携带数据以减少方法调用的数量。

由于您已使用PersonDTO来传送Person表格数据。但是,仅为一个对象创建PersonDTO是没用的,而只是用户Person

如果您有一个人员列表,或者可能是其他一些数据,其中包含有关请求状态的更多信息,如下所示

public class PersonDTO {
    public List<Person> personList;
    public Fault fault;

    public class Fault {
        String faultCode;
        String faultMessage
    }

    public Date requestDate;
    public UUID requestId;
    public String requestSignature;

    ...
}

在这种情况下,使用DTO对象是有意义的,因为响应不仅仅是一个人。

DTO也可以携带汇总数据。它应该是远程方法的外部视图。普通对象是私有的内部视图,您只能与之交互。

答案 1 :(得分:1)

DAO代表Data Access Object。正如其名称所示,其职责是访问数据。这意味着它知道如何使用数据连接从数据存储中检索对象。

DTO代表Data Transfer Object。它的职责是将数据格式封装在编程语言结构中,使其易于在代码中使用。

在我看来,DAO应该处理你的对象模型,而不是DTO。换句话说,界面应该返回Person而不是PersonDTO。在DAO实施的内部,可以方便地使用中间DTO对象来帮助您获取和存储对象。如果你正在使用Hibernate和/或JPA,你可以创建一个带有JPA注释的DTO

以下是我的实施方式:

// Define an interface for your DAO so you can mock in unit tests, or swap out an implementation if you decide not to use SQLite
public interface PersonDao {
    Person getPerson(int id) throws PersonDaoException;
}

// Write your implementation for SQLite. I fixed some design/implementation issues
class PersonDaoSqlite implements PersonDao {
    private final DataSource ds;

    public PersonDaoSqlite(DataSource ds) {
        this.ds = ds;
    }

    public Person getPerson(int id) {
        Connection connection = null;
        PreparedStatement statement = null;
        ResultSet result = null;

        // As of Java 7 and onwards, one can use try-with-resources here.
        try {
            connection = ds.getConnection();
            statement = connection.prepareStatement("SELECT * FROM PEOPLE WHERE ID = ?");
            statement .setInt(1, id);
            result = statement .executeQuery();

            Person person = new Person();
            person.setId(rs.getInt("id"));
            person.setName(rs.getString("age"));
        } catch (SQLException e) {
            throw new PersonDaoException(e);
        } finally {
            if (result != null) {
                result.close();
            }

            if (statement != null) {
                statement.close();
            }

            if (connection != null) {
                connection.close();
            }
        }
    }
}

public class PersonDaoException extends Exception {
     public PersonDaoException(Throwable cause) {
          super(cause);
     }
}

public class Person {
    private int id;
    private String name;
    public int getId() {
        return id;
    }
    public void setId(int id) {
        this.id = id;
    }
    public String getName() {
        return name;
    }
    public void setName(String name) {
        this.name = name;
    }
}