gpt4 book ai didi

java - 我无法在 Java 中使用 SQLite 获取 DAO/DTO 模式

转载 作者:行者123 更新时间:2023-11-30 08:01:27 24 4
gpt4 key购买 nike

我一直试图理解 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;
}
}

我的“道”

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 类有什么用,为什么不使用“Person”类呢?

这很令人沮丧。如有任何帮助,我将不胜感激。

最佳答案

在您的示例中,有一个 DTO 可能没有用,但一般情况下并非没有用。

DTO 对象应该是远程服务(RMI/Web 服务请求) 的输出。

An object that carries data between processes in order to reduce the number of method calls.

引用: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 也可以承载聚合数据。它应该是您的远程方法的外部 View 。普通对象在内部 View 中是私有(private)的,您只能与之交互。

关于java - 我无法在 Java 中使用 SQLite 获取 DAO/DTO 模式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37670703/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com