Debug|Druid monitor中SQL监控显示不出数据(已解决)

Druid monitor中SQL监控显示不出数据(已解决) 检查方法一: 查看Druid monitor中的数据源是否可访问
【Debug|Druid monitor中SQL监控显示不出数据(已解决)】如下图则数据源可访问:
Debug|Druid monitor中SQL监控显示不出数据(已解决)
文章图片

这时检查application.yaml中的配置

spring: datasource: username: root password: 123456 #?serverTimezone=UTC解决时区的报错 url: jdbc:mysql://localhost:3306/mybatis?serverTimezone=UTC&useUnicode=true&characterEncoding=utf-8 driver-class-name: com.mysql.cj.jdbc.Driver type: com.alibaba.druid.pool.DruidDataSource#Spring Boot 默认是不注入这些属性值的,需要自己绑定 #druid 数据源专有配置 initialSize: 5 minIdle: 5 maxActive: 20 maxWait: 60000 timeBetweenEvictionRunsMillis: 60000 minEvictableIdleTimeMillis: 300000 validationQuery: SELECT 1 FROM DUAL testWhileIdle: true testOnBorrow: false testOnReturn: false poolPreparedStatements: true #配置监控统计拦截的filters,stat:监控统计、log4j:日志记录、wall:防御sql注入 #如果允许时报错java.lang.ClassNotFoundException: org.apache.log4j.Priority #则导入 log4j 依赖即可,Maven 地址: https://mvnrepository.com/artifact/log4j/log4j filters: stat,wall,log4j maxPoolPreparedStatementPerConnectionSize: 20 useGlobalDataSourceStat: true connectionProperties: druid.stat.mergeSql=true; druid.stat.slowSqlMillis=500

注意 type: com.alibaba.druid.pool.DruidDataSource下边的所有相关配置需要与username同级
检查方法二:查看Druid monitor中的数据源是否可访问
若只显示(*) property for user to setup,则不可访问
这时只需加以下jar即可
org.springframework.boot spring-boot-starter-data-jpa spring-boot-starter-data-jpa

我的druid包是1.2.6的
com.alibaba druid 1.2.6

成功
Debug|Druid monitor中SQL监控显示不出数据(已解决)
文章图片

    推荐阅读