2016-04-14 15 views
1

私のアプリケーションでは、春の雲の領事を使用しています。私が申請を始めたときに例外はありません(領事に登録されたサービス)。領事チェック健康は、私はこのエラーを得たときには:領事ヘルスチェック:503サービス利用不可

spring: 
    application: 
     name: @[email protected] 
    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 

私のポンポンは以下の通りである:ここで

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

は私の設定ファイルで設定があるよう

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

答えて

0

に見えます少し間違った。 最新documentationは、次の設定例が含まれています

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

ところで:最新spring-cloud-consulバージョンはRC1

です
関連する問題