參考spring
https://www.jianshu.com/p/44ef43b282f0
這裏只描述經過HTTP Shutdown安全
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-actuator</artifactId> </dependency>
endpoints: shutdown: enabled: true #啓用shutdown sensitive: false #禁用密碼驗證
curl -X POST localhost:8080/shutdown
- 該方式支持遠程調用,推薦在內網環境下使用 - 若是要增長安全設置請參考原文,本人未測試該特性