问题遇到的现象和发生背景
这是数据库的查询结果
这是执行后的结果
不明白为什么没有正确封装成User
这是User的属性
问题相关代码,请勿粘贴截图
这是执行的代码
ApplicationContext app = new ClassPathXmlApplicationContext("spring-mvc.xml");
JdbcTemplate jt = (JdbcTemplate)app.getBean("jdbcTemplate");
List<User> query = jt.query("select * from users", new BeanPropertyRowMapper<User>(User.class));
System.out.println(query);