Spring Boot3.x以上版本的项目中切换数据库连接池为Druid(德鲁伊)
在Spring Boot 3.x以上版本中切换数据库连接池到Druid,你需要做以下几步:
- 添加Druid依赖到你的
pom.xml
或build.gradle
文件中。
使用Maven,在pom.xml
中添加:
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>druid-spring-boot-starter</artifactId>
<version>最新版本号</version>
</dependency>
使用Gradle,在build.gradle
中添加:
implementation 'com.alibaba:druid-spring-boot-starter:最新版本号'
- 在
application.properties
或application.yml
中配置Druid连接池属性。
例如,在application.properties
中:
spring.datasource.type=com.alibaba.druid.pool.DruidDataSource
spring.datasource.url=jdbc:mysql://localhost:3306/yourdb
spring.datasource.username=root
spring.datasource.password=yourpassword
spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
或者在application.yml
中:
spring:
datasource:
type: com.alibaba.druid.pool.DruidDataSource
url: jdbc:mysql://localhost:3306/yourdb
username: root
password: yourpassword
driver-class-name: com.mysql.cj.jdbc.Driver
- 如果需要,可以进一步配置Druid的监控页面,例如:
在application.properties
中:
spring.datasource.druid.stat-view-servlet.enabled=true
spring.datasource.druid.stat-view-servlet.url-pattern=/druid/*
spring.datasource.druid.stat-view-servlet.reset-enable=false
spring.datasource.druid.stat-view-servlet.login-username=admin
spring.datasource.druid.stat-view-servlet.login-password=admin
spring.datasource.druid.filter.stat.log-slow-sql=true
spring.datasource.druid.filter.stat.slow-sql-millis=2000
或者在application.yml
中:
spring:
datasource:
druid:
stat-view-servlet:
enabled: true
url-pattern: /druid/*
reset-enable: false
login-username: admin
login-password: admin
filter:
stat:
log-slow-sql: true
slow-sql-millis: 2000
- 重启你的Spring Boot应用,Druid连接池现在应该已经配置并运行了。
确保你已经按照Druid的要求配置了数据库URL、用户名和密码,以及其他任何特定的连接池参数。此外,监控服务的配置也要确保安全性,不要在生产环境中暴露不必要的信息。
评论已关闭