0
我想用自定義JSON響應覆蓋Spring引導健康端點。 我試着用public class MyHealth implements HealthIndicator
但那是返回一些值與myHealth對象如何用自定義值覆蓋spring boot health端點?
包裹其實這是實施後,我得到
{
"status": "UP",
"myHealth": {
"name": "Integration Service",
"version": "1.0",
"_links": {
"self": {
"href": "http://localhost:8083/health"
}
}
}
}
但是,這是我其實我想作爲輸出
{
"name": "Integration Service",
"version": "1.0",
"status": "UP",
"_links": {
"self": {
"href": "http://localhost:8083/health"
}
}
}
覆蓋還是擴展?在你的例子中什麼是不需要的?代碼在哪裏? – Marged
@已限制我編輯了問題謝謝 –
我們仍然缺少代碼。你打算改變什麼?添加版本?通過調用'/ info'可以看到名稱和信息。 – Marged