一、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