-
JdbcTemplate的jar包.rar下载
资源介绍
JdbcTemplate的jar包
内含:
commons-logging-1.2.jar
spring-beans-5.0.0.RELEASE.jar
spring-core-5.0.0.RELEASE.jar
spring-jdbc-5.0.0.RELEASE.jar
spring-tx-5.0.0.RELEASE.jar
查询一行的内容,封装为map用:template.queryForMap(sql)
查询所有的内容,封装为list用 :template.queryForList(sql)
查询所有的内容,封装为对象用:template.query(sql, new BeanPropertyRowMapper<对象>(对象.class));
查询需要使用聚合函数的内容,如:select count(id)from account用:template.queryForObject(sql)