6
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
這會爲您的應用程序添加幾個有用的端點。其中之一是/健康。當您啓動應用程序並導航到/ health端點時,您會看到它已經返回一些數據。如何在春季開機健康中添加自定義運行狀況檢查?
{
"status":"UP",
"diskSpace": {
"status":"UP",
"free":56443746,
"threshold":1345660
}
}
如何在spring boot health中添加自定義運行狀況檢查?