欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

jdbc 报错 (org.springframework.jdbc.IncorrectResultSetColumnCountException: Incorrect column count: )

程序员文章站 2022-03-26 19:21:18
...

在使用   

SingleColumnRowMapper.newInstance() 

 的时候报错

jdbc 报错信息: 

org.springframework.jdbc.IncorrectResultSetColumnCountException: Incorrect column count: expected 1, actual 3

其实这样是不对的,

应该为

new BeanPropertyRowMapper<>()

 

相关标签: 报错