sprin boot集成druid

一、maven依赖

1
2
3
4
5
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>druid-spring-boot-starter</artifactId>
<version>1.1.10</version>
</dependency>

二、配置文件

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
spring.datasource.druid.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.druid.username=root
spring.datasource.druid.password=root123456
spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver

spring.datasource.druid.web-stat-filter.enabled=true
spring.datasource.druid.filter.stat.log-slow-sql=true

spring.datasource.druid.stat-view-servlet.enabled=true
spring.datasource.druid.stat-view-servlet.login-username=admin
spring.datasource.druid.stat-view-servlet.login-password=123456

三、使用

http://localhost:8080/druid/login.html


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