解释:
期望的结果是1, 实际的结果是 4 , 对象有4个属性,表有4 个字段
原因:
- jdbcTemplate.queryForList(selectSql.toString(), entityClass) ;
this
.jdbcTemplate.queryForObject(sql, SysUser.
class
);
一 、而 queryForList 方法参数的解释是这样的:
Java代码
- Parameters:
- sql SQL query to execute
- elementType the required type of element in the result list (for example, Integer.class)
就是第2个参数在网上说只能是简单类型String或Integer。
2、使用query查询
Java代码
- jdbcTemplate.query(selectSql.toString(), rowMapper)
但多了一个参数rowMapper,这个参数需要定义为:
Java代码
- @SuppressWarnings("unused")
- private BeanPropertyRowMapper<T> rowMapper = new BeanPropertyRowMapper<T>(entityClass){
- @Override
- protected void initBeanWrapper(BeanWrapper bw) {
- super.initBeanWrapper(bw);
- }
- };
具体的作用就是进入查询结果转换成实体。
二、
jdbcTemplate.queryForObject(sql, requiredType) 中的requiredType应该为基础类型,和String类型。
如果想查真正的object应该为
1 2 3 4 |
|
原文地址:https://www.cnblogs.com/stujike/p/9021006.html
时间: 2024-10-11 20:41:30