当前位置: 代码迷 >> 综合 >> spring-boot-starter-actuator gradle开启全监控
  详细解决方案

spring-boot-starter-actuator gradle开启全监控

热度:95   发布时间:2024-01-17 22:49:45.0

application.yml追下如下信息:

management:
security:
enabled: false
endpoints:
web:
exposure:
include: “*”
exclude: env,beans
health:
sensitive: false

  相关解决方案