spring boot集成hikariCP

一、spring boot版本使用的数据库连接池

  • Spring Boot 1.x 默认使用的是 Tomcat 连接池,需要移除 tomcat-jdbc,配置 spring.datasource.type=com.zaxxer.hikari.hIkari.HikariDatasource
  • Spring Boot 2.x 默认使用 HikariCP

二、spring boot 2.x使用

1
2
3
4
5
6
7
8
9
spring.datasource.url=jdbc:mysql://127.0.0.1:3306/crm?useSSL=true\
&useUnicode=true\
&characterEncoding=UTF-8\
&useServerPrepStmts=true\
&serverTimezone=Asia/Shanghai\
&zeroDateTimeBehavior=CONVERT_TO_NULL
spring.datasource.username=root
spring.datasource.password=你的密码
spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver

其他的就是一些配置了,用时在说吧


spring boot集成hikariCP
http://hanqichuan.com/2021/03/12/spring/spring_boot集成hikariCP/
作者
韩启川
发布于
2021年3月12日
许可协议