spring boot actuator endpoints 暴露问题

spring boot actuator endpoints 暴露问题

版本 springboot starter actuator 2.0.0

在2.0.0.之前版本的endpoints的开启方式是通过

    #endpoints:
    #  env:
    #    sensitive: false
    #management:
    #  security:
    #    enabled: false

2.0.0 的版本

    #  2.0.0配置
    #management:
    #  server:
    #    port: 8890
    #  endpoints:
    #    web:
    #      exposure:
    #        include: health,info,mappings,env

你可能感兴趣的:(spring)