此版本仍在开发中,尚未被视为稳定版本。对于最新的稳定版本,请使用 Spring Boot 3.4.0! |
关闭 (shutdown
)
终端节点用于关闭应用程序。shutdown
关闭应用程序
要关闭应用程序,请向 发出请求,如以下基于 curl 的示例所示:POST
/actuator/shutdown
$ curl 'http://localhost:8080/actuator/shutdown' -i -X POST
将生成类似于以下内容的响应:
HTTP/1.1 200 OK
Content-Type: application/vnd.spring-boot.actuator.v3+json
Content-Length: 41
{
"message" : "Shutting down, bye..."
}