链接 🔗
- GitHub
- MVNRepository
安装
添加依赖:<!-- https://mvnrepository.com/artifact/com.alibaba/druid-spring-boot-starter --><dependency><groupId>com.alibaba</groupId><artifactId>druid-spring-boot-starter</artifactId><version>1.1.21</version></dependency>
配置 application.yml:
spring:datasource:url: jdbc:mysql://localhost:3306/exampleusername: rootpassword: root# 不需要显式配置 type 属性,添加依赖即可# type: com.alibaba.druid.pool.DruidDataSource
