欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

java spring boot 开启监控信息

程序员文章站 2022-04-28 13:40:45
效果: 配置 ......

效果:

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