Spring JdbcTemplate使用详解

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Spring JdbcTemplate使用详解相关的知识,希望对你有一定的参考价值。

Spring框架对JDBC的简单封装。提供了一个JDBCTemplate对象简化JDBC的开发

步骤

  1. 导入jar包
<dependency>
  <groupId>org.springframework.boot</groupId>
  <artifactId>spring-boot-starter-jdbc</artifactId>
</dependency>
  1. 创建JdbcTemplate对象。依赖于数据源DataSource
JdbcTemplate template = new JdbcTemplate(JDBCUtils.getDataSource());

调用JdbcTemplate的方法来完成CRUD的操作

update():执行DML语句。增、删、改语句 queryForMap():查询结果将结果集封装为map集合,将列名作为key,将值作为value 将这条记录封装为一个map集合

以上是关于Spring JdbcTemplate使用详解的主要内容,如果未能解决你的问题,请参考以下文章

Spring JdbcTemplate详解

Spring JdbcTemplate使用详解

JdbcTemplate详解

Spring JdbcTemplate详解

(转)Spring JdbcTemplate 方法详解

Spring NamedParameterJdbcTemplate 详解 解决jdbcTemplate中 in 参数的问