Spring 使用JdbcTemplate类实现批量查询(RowMapper)

我们知道了如何验证登陆和批量更新,那么我再介绍一个功能那就是批量查询
那就要用到

org.springframework.jdbc.core
Class JdbcTemplate

类的query()这个方法他返回一个List对象,里面存了我们所有的对象数据他接受一个RowMapper类型的对象
List query(PreparedStatementCreator psc, RowMapper rowMapper)
          Query using a prepared statement, mapping each row to a Java object via a RowMapper.
实现批量查询我们需要实现RowMapper这个接口

org.springframework.jdbc.core
Interface RowMapper

All Known Implementing Classes:
ColumnMapRowMapper, SingleColumnRowMapper

这个接口只有一个方法
Object mapRow(ResultSet rs, int rowNum)
          Implementations must implement this method to map each row of data in the ResultSet.
他负责对ResultSet的处理返回一个对象,这个对象我们对他进行了打包,每一个MyUser对象里面存了用户名和密码
来看看我的MyUser这个类,里面只有用户名和密码两个成员变量
Spring 使用JdbcTemplate类实现批量查询(RowMapper)_第1张图片
RowMapper类的实例MyRowMapper
Spring 使用JdbcTemplate类实现批量查询(RowMapper)_第2张图片
我修改的XML文件加了一个RowMapper Bean
Spring 使用JdbcTemplate类实现批量查询(RowMapper)_第3张图片
经过修改的核心类
Spring 使用JdbcTemplate类实现批量查询(RowMapper)_第4张图片

本文出自 “绝缘材料” 博客,请务必保留此出处http://tonyaction.blog.51cto.com/227462/42043

你可能感兴趣的:(Spring)