我一直试图了解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);
}
}
}
我无法获得:
这非常令人沮丧。我将不胜感激任何帮助。
答案 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;
}
}