Spring从菜鸟到高手(四)(下)使用JdbcTemplate类实现批量查询

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

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这个类,里面只有用户名和密码两个成员变量
 10e78569dd6.jpg
RowMapper类的实例MyRowMapper
10e7856047e.jpg
我修改的XML文件加了一个RowMapper Bean
10e785d7b0f.jpg
 
经过修改的核心类
10e785e24b2.jpg

你可能感兴趣的:(java,spring,JdbcTemplate,绝缘材料,Spring从菜鸟到高手)