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开启监控页面的主要内容,如果未能解决你的问题,请参考以下文章