HealthIndicatorを実装するクラスを作成しました。これは、ヘルスメソッドをオーバーライドしています。 (詳細なしで、健康)の代わりにスプリングブート状態で詳細が表示されない(詳細情報付き)
{
"status":"UP",
"applicationHealth": {
"status":"UP"
}
}
それだけで返します:私はこれが私のhealth
-endpoint復帰をしなければならない
Health.down().withDetail("SupportServiceStatus", "UP").build();
戻る
{
"status":"UP",
}
Javacode(やや簡略化):
@Component
public class ApplicationHealth implements HealthIndicator {
@Override
public Health health() {
return check();
}
private Health check() {
return Health.up().withDetail("SupportServiceStatus", supportServiceStatusCode).build();
}
}
は、春のブートでは機能しませんでした。1.5.1 – cahen
新しいバージョンの回答が – olahell
> 1.4.1と思われます。 1.4.2-RELEASEの管理フラグが必要です – Jontia