java spring boot 开启监控信息

效果:

配置

//     pom
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-actuator</artifactId>
        </dependency>
//    application.properties
# spring boot 开启监控信息
management.endpoints.web.exposure.include=*
management.endpoints.web.exposure.exclude=shutdown
原文地址:https://www.cnblogs.com/Cailf/p/10310869.html