gpt4 book ai didi

java - Spring Framework应用中JDBC使用RowMapper的一些疑惑

转载 作者:IT老高 更新时间:2023-10-28 13:53:31 26 4
gpt4 key购买 nike

我正在研究如何在 Spring Framework 中使用 JDBC 对数据库执行查询。

我正在学习本教程:http://www.tutorialspoint.com/spring/spring_jdbc_example.htm

在本教程中,我定义了一个 StudentDAO 接口(interface),它只定义了我想要的 CRUD 方法。

然后定义 Student 类,该类是我要在 Student 数据库表中持久保存的实体。

然后定义 StudentMapper 类,它是 RowMapper 接口(interface)的特定实现,在这种情况下,用于映射 ResultSet 中的特定记录(由查询返回)到 Student 对象。

然后我有 StudentJDBCTemplate 来表示我的 StudentDAO 接口(interface)的实现,在这个类中我实现了接口(interface)中定义的 CRUD 方法。

好的,现在我对 StudentMapper 类的工作方式有疑问:在这个 StudentJDBCTemplate 类中,定义了返回所有记录列表的方法在 Student 数据库表中,这个:

   public List<Student> listStudents() {
String SQL = "select * from Student";
List <Student> students = jdbcTemplateObject.query(SQL,
new StudentMapper());
return students;
}

你怎么看,这个方法返回一个Student对象的List,工作方式如下:

它做的第一件事是在 SQL 字符串中定义返回 Student 数据库表中的所有记录的查询。

然后这个查询是通过jdbcTemplateObject对象(即JdbcTemplateSpring类**的一个实例**

此方法有两个参数:SQL 字符串(包含必须执行的 SQL 查询)和一个新的 StudentMapper 对象,该对象采用由返回的 ResultSet 对象查询并将其记录映射到新的 Student 对象上

在这里阅读:http://static.springsource.org/spring/docs/current/javadoc-api/org/springframework/jdbc/core/JdbcTemplate.html说:执行给定静态 SQL 的查询,通过 RowMapper 将每一行映射到 Java 对象。

我的疑问与我的 StudentMapper 使用 ma​​pRow() 方法在 Student 对象上映射 ResultSet 记录有关,代码如下:

package com.tutorialspoint;

import java.sql.ResultSet;
import java.sql.SQLException;
import org.springframework.jdbc.core.RowMapper;

public class StudentMapper implements RowMapper<Student> {
public Student mapRow(ResultSet rs, int rowNum) throws SQLException {
Student student = new Student();
student.setId(rs.getInt("id"));
student.setName(rs.getString("name"));
student.setAge(rs.getInt("age"));
return student;
}
}

那么,谁调用了这个 ma​​pRow 方法?它是由 Spring Framework 自动调用的吗? (因为在这个例子中从不手动调用...)

Tnx

安德烈亚

然后这个查询是通过jdbcTemplateObject对象(即JdbcTemplateSpring类**的一个实例**

最佳答案

当您将 RowMapper 的实例传递给 JdbcTemplate 方法时

List <Student> students = jdbcTemplateObject.query(SQL, new StudentMapper());

根据您调用的方法,JdbcTemplate 将在内部使用映射器及其从 JDBC 连接获得的结果集来创建您请求类型的对象。例如,由于您调用了 JdbcTemplate#query(String, RowMapper),该方法将使用您的 String SQL 来查询数据库,并循环遍历 ResultSet 中的每个“行” > 有点像这样:

ResultSet rs = ... // execute query
List<Student> students = ...// some list
int rowNum = 0;
while(rs.next()) {
Student student = rowMapper.mapRow(rs, rowNum);
students.add(student);
rowNum++;
}

return students;

所以,SpringJdbcTemplate 方法将使用您提供的 RowMapper 并调用它的 mapRow 方法来创建预期的返回对象。

您可能想看看 Martin Fowler 的 Data Mapper结合 Table Data Gateway了解这些东西是如何分布的并提供low coupling .

关于java - Spring Framework应用中JDBC使用RowMapper的一些疑惑,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15118630/

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