SpringBoot +durid 配置(spring 监控失败的处理办法)
添加 durid 依赖包
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>druid-spring-boot-starter</artifactId>
<version>1.1.10</version>
</dependency>
yml配置
spring:
#数据库配置
datasource:
username: xx
password: xx
type: com.zaxxer.hikari.HikariDataSource
driver-class-name: com.mysql.cj.jdbc.Driver
url: jdbc:mysql://xx/xx?useUnicode=true&characterEncoding=utf-8&useSSL=true&allowMultiQueries=true&serverTimezone=Asia/Shanghai
platform: h2
continue-on-error: true
druid:
stat-view-servlet:
login-username: xx
login-password: xx
reset-enable: false
url-pattern: /druid/*
filter:
wall:
config:
# 允许双const条件 1=1
select-where-alway-true-check: false
# 允许sql中包含注释
comment-allow: true
aop-patterns: com.xx.xx.*.controller.*.*
重点说明
spring监控 com.xx.xx..controller..* 下的所类的所有方法
aop-patterns: com.xx.xx.*.controller.*.*
效果如下
详细配置(上面的配置基本够用 一下配置作为了解)
spring:
#数据库配置
datasource:
username: xx
password: xx
type: com.zaxxer.hikari.HikariDataSource
driver-class-name: com.mysql.cj.jdbc.Driver
url: jdbc:mysql://xx/xx?useUnicode=true&characterEncoding=utf-8&useSSL=true&allowMultiQueries=true&serverTimezone=Asia/Shanghai
platform: h2
continue-on-error: true
druid:
# 下面为连接池的补充设置,应用到上面所有数据源中
# 初始化大小,最小,最大
initial-size: 5
min-idle: 5
max-active: 20
# 配置获取连接等待超时的时间
max-wait: 60000
# 配置间隔多久才进行一次检测,检测需要关闭的空闲连接,单位是毫秒
time-between-eviction-runs-millis: 60000
# 配置一个连接在池中最小生存的时间,单位是毫秒
min-evictable-idle-time-millis: 300000
validation-query: SELECT 1 FROM DUAL
test-while-idle: true
test-on-borrow: false
test-on-return: false
# 打开PSCache,并且指定每个连接上PSCache的大小
pool-prepared-statements: true
max-pool-prepared-statement-per-connection-size: 20
# 配置监控统计拦截的filters,去掉后监控界面sql无法统计,'wall'用于防火墙
filters: stat,wall
use-global-data-source-stat: true
# 通过connectProperties属性来打开mergeSql功能;慢SQL记录
connect-properties: druid.stat.mergeSql=true;druid.stat.slowSqlMillis=5000
# 配置监控服务器
stat-view-servlet:
login-username: xx
login-password: xx
reset-enable: false
url-pattern: /druid/*
# 添加IP白名单
#allow:
# 添加IP黑名单,当白名单和黑名单重复时,黑名单优先级更高
#deny:
web-stat-filter:
# 添加过滤规则
url-pattern: /*
# 忽略过滤格式
exclusions: "*.js,*.gif,*.jpg,*.png,*.css,*.ico,/druid/*"
filter:
wall:
config:
# 允许双const条件 1=1
select-where-alway-true-check: false
comment-allow: true
aop-patterns: com.xx.xx.*.controller.*.*