Springcloud 整合 actuator监控后,无法mapping actuator端点问题

项目环境描述:
springcloud:eureka注册中心,apollo配置中心,springboot-admin-server 监控

出现问题:项目整合actuator后,actuator提供的端点无法注册到HandleMapping中,倒置监控服务一直显示down状态

问题出现原因:

management:
  endpoints:
    web:
      exposure:
        include: "*"
  endpoint:
    health:
      show-details: always

上面的actuator配置不能配置在apollo中

将该配置在bootstrap或者application中写死就行

你可能感兴趣的:(spring)