SpringBoot 中引入Druid监控


说明

这只是最基础的引入、使用,更详细的使用还请具体参考 官方GitHub主页。Druid 真的牛🍻

访问地址

  • xxxx/druid/

0、官方地址

1、引入依赖、配置数据源

<dependency>
	<groupId>com.alibaba</groupId>
	<artifactId>druid-spring-boot-starter</artifactId>
	<version>1.1.17</version>
</dependency>
spring:
  datasource:
    url: jdbc:mysql://localhost:3306/{写你自己的数据链接吧哈哈哈}
    username: root
    password: xxxxxx
    driver-class-name: com.mysql.jdbc.Driver

2、yaml详细配置

druid:
  aop-patterns: com.xueou.boot.*  #spring bean 监控
  filters: stat,wall,slf4j
  max-active: 12
  stat-view-servlet:
    enabled: true
    ## 登陆账号密码
    login-username: pxoxq
    login-password: password
    reset-enable: false

  web-stat-filter: ## web监控
    enabled: true
    url-pattern: /*
    exclusions: '*.js,*.gif,*.jpg,*.png,*.css,*.ico,/druid/*'

  filter:
    stat: #sql监控
      ## 慢查询时间阈值
      slow-sql-millis: 1000
      logSlowSql: true
      enabled: true
    wall: #防火墙
      enabled: true
      config:
        drop-table-allow: false

文章作者: pxoxq
版权声明: 本博客所有文章除特別声明外,均采用 CC BY 4.0 许可协议。转载请注明来源 pxoxq !
  目录