BeanPropertyRowMapper

spring2.5+提供了BeanPropertyRowMapper/ParameterizedBeanPropertyRowMapper,如果PO和数据库模型的字段完全对应(字段名字一样或者驼峰式与下划线式对应),如果使用JdbcTemplate则可以使用这个RowMapper作为PO和数据库的映射。

jdbcTemplate.query("select * from list_pages",new BeanPropertyRowMapper(ListPage.class));

相关推荐