SpringBoot應用正常關閉

簡介

參考spring

https://www.jianshu.com/p/44ef43b282f0

這裏只描述經過HTTP Shutdown安全

POM依賴

<dependency>
	<groupId>org.springframework.boot</groupId>
	<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>

開啓Spring Boot Actuator的配置

endpoints:
    shutdown:
        enabled: true  #啓用shutdown
        sensitive: false #禁用密碼驗證

測試

curl -X POST localhost:8080/shutdown

特別說明

- 該方式支持遠程調用,推薦在內網環境下使用
- 若是要增長安全設置請參考原文,本人未測試該特性
相關文章
相關標籤/搜索