【源码分析-Spring Boot】-11.Spring Boot JdbcTemplate 查询流程及原理


Spring Boot JdbcTemplate:【从零开始学Spring Boot】-11.Spring Boot JdbcTemplate操作数据库

JdbcTemplate 是 spring 提供的一个操作数据库的工具类,它是模板方法模式的一种实现。它本身不会注入到 spring 容器中,需要在使用时声明。在创建 JdbcTemplate 对象时一般需要传入一个 datasource,所以在 DataSourceConfig 中同时读二者进行了声明。

1.JdbcTemplate 查询执行流程

这里以 UserService#findUserById 为例说明,其他类似

主要流程还是 jdbc 连接数据的操作,需要用户自己实现结果集映射,重写 RowMapper 中的 mapRow 方法。


文章作者: Soulballad
版权声明: 本博客所有文章除特別声明外,均采用 CC BY 4.0 许可协议。转载请注明来源 Soulballad !
评论
 上一篇
【从零开始学Spring Boot】-12.Spring Boot Mybatis操作数据库 【从零开始学Spring Boot】-12.Spring Boot Mybatis操作数据库
1.简介1.1 概述 The MyBatis-Spring-Boot-Starter help you build quickly MyBatis applications on top of the Spring Boot. By usi
下一篇 
【从零开始学Spring Boot】-11.Spring Boot JdbcTemplate操作数据库 【从零开始学Spring Boot】-11.Spring Boot JdbcTemplate操作数据库
1.简介1.1 概述 This is the central class in the JDBC core package. It simplifies the use of JDBC and helps to avoid common e
  目录