spring JdbcTemplate 查询,使用BeanPropertyRowMapper

Posted 花谢^花开

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了spring JdbcTemplate 查询,使用BeanPropertyRowMapper相关的知识,希望对你有一定的参考价值。

应用:

使用Spring的JdbcTemplate查询数据库,获取List结果列表,数据库表字段和实体类自动对应,可以使用BeanPropertyRowMapper

注:BeanPropertyRowMapper 实现了 RowMapper 接口。

注意:

自动绑定,需要列名称和Java实体类名字一致,如:属性名 “userName” 可以匹配数据库中的列字段 "USERNAME" 或 “user_name”。这样,我们就不需要一个个手动绑定了,大大提高了开发效率。

查询代码:

@Override
public List<UserEntity> findUser(UserEntity user) {
logger.info("查询语句:" + SEL_BY_USERNAME_PWD);

List<UserEntity> userList = jdbcTemplate.query(SEL_BY_USERNAME_PWD,
new Object[] { user.getUserName(), user.getPwd() },
new BeanPropertyRowMapper<UserEntity>(UserEntity.class));
return userList;
}

SQL:

private static final String SEL_BY_USERNAME_PWD = "SELECT * FROM " + ConstantList.T_SHUJU_ADMIN_USER + " AS sp WHERE sp.username = ? and sp.pwd = ?";

 







以上是关于spring JdbcTemplate 查询,使用BeanPropertyRowMapper的主要内容,如果未能解决你的问题,请参考以下文章

Spring二刷笔记-JdbcTemplate

spring JdbcTemplate 查询,使用BeanPropertyRowMapper

如何使用 Spring 的 JDBCTemplate 有效地执行 IN() SQL 查询?

如何使用 spring 的 jdbcTemplate 在 SQL 查询中指定参数

spring 如何获取 jdbctemplate

spring jdbctemplate 使用中文查询条件 查不出结果