zoukankan      html  css  js  c++  java
  • SpringBoot Admin OFFLINE

    java.util.concurrent.TimeoutException

    message Did not observe any item or terminal signal within 10000ms in 'map' (and no fallback has been configured)

    添加下面引用

    <!--健康检查-->
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-actuator</artifactId>
    </dependency>

    http://192.168.0.66:22586/actuator/health  访问超时

    Actuator Health 超时导致 Spring Boot Admin 反复 Offline / Up 的临时解决方案

    #开放端点用于SpringBoot Admin的监控
    management:
      endpoints:
        web:
          exposure:
            include: '*'
      endpoint:
        health:
          show-details: always
      health:
        redis:
          enabled: false
  • 相关阅读:
    JAVA面试——设计模式
    CSS清除浮动
    CSS外边距
    baidu-ife
    笔记一则
    Atom
    校园网认证
    四月甘九-省
    Python sys.argv[]用法
    Python模块导入的方法
  • 原文地址:https://www.cnblogs.com/vipsoft/p/15385102.html
Copyright © 2011-2022 走看看