springboot + druid开启监控页面

Posted 程序员与数学家

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了springboot + druid开启监控页面相关的知识,希望对你有一定的参考价值。

    <dependency>
            <groupId>com.alibaba</groupId>
            <artifactId>druid-spring-boot-starter</artifactId>
            <version>1.2.8</version>
        </dependency>

application.yml   加入以下配置

spring:
  datasource:
    druid:
      stat-view-servlet:
        enabled: true
        login-username: admin
        login-password: xxxxxx
        url-pattern: /druid/*
      filter:
          stat:
            enabled: true
      web-stat-filter:
        enabled: true

 

以上是关于springboot + druid开启监控页面的主要内容,如果未能解决你的问题,请参考以下文章

SpringBoot 开启Druid监控统计功能

SpringBoot+Druid整合Druid监控页面的数据源功能没有信息

druid 配置监控页面和开启防火墙,spring

SpringBoot--配置Druid(德鲁伊)数据源监控

Spring boot 数据库连接池

Spring boot 数据库连接池