领事健康检查:503服务不可用

时间:2016-04-14 10:12:53

标签: spring spring-boot spring-cloud consul

我在我的应用程序中使用spring cloud consul。当我启动应用程序时,我没有例外(服务在领事中注册)。但是当领事检查健康时我得到了这个错误:

HTTP GET https://xxxxxxxxxx:8181/health: 503 Service Unavailable Output: {
"status" : "DOWN"
}

这是我的配置文件:

   spring:
    application:
      name: @pom.artifactId@
    cloud:
     config:
       enabled: false

   consul:
     config:
       enabled: true
        host: localhost
        port: 8500
     discovery:
        scheme: https

  endpoints:
   health:
    sensitive: false
   restart:
     enabled: true
   shutdown:
     enabled: true

我的pom如下:

     <dependency>
        <groupId>org.springframework.cloud</groupId>
        <artifactId>spring-cloud-starter-consul-all</artifactId>
        <version>1.0.0.M6</version>
    </dependency>

1 个答案:

答案 0 :(得分:0)

看起来您的配置有点不正确。 最新的documentation包含以下配置示例:

spring:
  cloud:
    consul:
      host: localhost
      port: 8500

BTW :最新的spring-cloud-consul版本为RC1