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

使用QueryRuner出现java.sql.SQLException: Cannot create com.pojo.User:异常

程序员文章站 2022-06-15 09:17:39
...

在用QueryRuner对数据库进行查询时发现如下异常:

`public class queryRunnerTest {
    public static void main(String[] args) throws Exception{
        QueryRunner queryRunner = new QueryRunner();
        Connection conn = JdbcUtils.getConnection();

        String sql = "SELECT * FROM t_user WHERE id = 1";


        BeanHandler<User> handler = new BeanHandler<>(User.class);

        User user1 = queryRunner.query(conn, sql, handler);

        System.out.println(user1);
    }`

使用QueryRuner出现java.sql.SQLException: Cannot create com.pojo.User:异常
通过调试原来是查询返回的User类没有空参构造函数,在User类文件中加入空参构造函数:

    public User() {
    }

有了空参构造函数,接着执行之前的代码就可以查询到相应的数据了:
使用QueryRuner出现java.sql.SQLException: Cannot create com.pojo.User:异常