Druid Monitor监控(sql性能检测工具)

前言:

项目环境说明:springBoot2.* idea intellij maven项目

1,添加依赖包


   com.alibaba
   druid-spring-boot-starter
   1.1.10

2,spring 配置

spring.datasource.druid.filters=stat,wall,logback

3、启动项目,访问监控页面

http://localhost:port/你的项目跟路径/druid/index.html

在这里插入图片描述

想了解更多,点击下面链接
官方文档:
官方社区:

4、删除底部广告

druid的监控页面加载以后,footer页是有阿里的广告的如下图所示,如果是一个商业项目这个是很不雅也是不允许的,那么我们来看看如何去除广告。
Druid Monitor监控(sql性能检测工具)_第1张图片
要去除这个广告需要修改druid.jar的源码文件,具体方法是,用winRAR打开jar包,在druid-1.1.6.jar\support\http\resources\js\common.js路径下找到文件,修改common.js中如下图所示的代码,删除buildFooter函数中的代码即可:

buildFooter : function() {
            var html ='';
            $(document.body).append(html);
        },

你可能感兴趣的:(SpringBoot)