SpringBoot_数据访问-整合Druid&配置数据源监控
第一步,在 pom . xml 文件中导入 druid 的文件信息 <!-- https : // mvnrepository.com/artifact/com.alibaba/druid --> <dependency> <groupId> com . alibaba </ groupId > <artifactId> druid </ artifactId > <version> 1.1 . 8 </ version > </ dependency > 第二部,在 application . yml 配置文件中添加数据源信息 spring : datasource : username : root password : root url : jdbc : mysql : // localhost:3306/test driver - class - name : com . mysql . jdbc . Driver type : com . alibaba . druid . pool . DruidDataSource # schema: # - classpath:oa_course.sql 数据库要执行的脚本 # 数据源其他配置 initialSize : 5 minIdle : 5 maxActive : 20 maxWait : 60000