当前位置:   article > 正文

Spring JDBC查询数据_spring jdbc中仅查询

spring jdbc中仅查询

以下示例将展示如何使用Spring jdbc进行查询数据记录,将从student表中查询记录。

语法:

  1. String selectQuery = "select * from student";
  2. List <Student> students = jdbcTemplateObject.query(selectQuery, new StudentMapper());

在上面语法中 -

  • selectQuery - 选择查询学生数据记录。
  • jdbcTemplateObject - StudentJDBCTemplate 对象将 Student 对象插入到数据库中。
  • StudentMapper - StudentMapper是一个RowMapper对象,用于将每个获取的记录映射到Student对象。

查询数据方法

  1. public List<Student> listStudents() {
  2. String sql = "select * from student";
  3. List<Student> students = jdbcTemplateObject.query(sql, new StudentMapper());
  4. return students;
  5. }


执行程序:

  1. public class MainApp {
  2. public static void main(String[] args) {
  3. ApplicationContext context = new ClassPathXmlApplicationContext("application-beans.xml");
  4. StudentJDBCTemplate studentJDBCTemplate = (StudentJDBCTemplate) context.getBean("studentJDBCTemplate");
  5. System.out.println("------Listing Multiple Records--------");
  6. List<Student> students = studentJDBCTemplate.listStudents();
  7. for (Student record : students) {
  8. System.out.print("ID : " + record.getId());
  9. System.out.print(",Name : " + record.getName());
  10. System.out.println(",Age : " + record.getAge());
  11. }
  12. }
  13. }

输出结果:

ID : 10,Name : Allen,Age : 17
ID : 11,Name : Ray,Age : 18
ID : 12,Name : Mark,Age : 20
ID : 13,Name : Allen,Age : 17
ID : 14,Name : Ray,Age : 18
ID : 15,Name : Mark,Age : 20
ID : 16,Name : Allen,Age : 17
ID : 17,Name : Ray,Age : 18
ID : 18,Name : Mark,Age : 20
ID : 19,Name : Allen,Age : 17
ID : 20,Name : Ray,Age : 18
ID : 21,Name : Mark,Age : 20

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/不正经/article/detail/576755
推荐阅读
相关标签
  

闽ICP备14008679号