springboot 的发布与安全关闭
springboot 后台发布命令 java -jar xxxx.jar &
关闭springboot服务 application.yml 添加如下配置
{
management:
endpoint:
shutdown:
enabled: true
endpoints:
web:
exposure:
include: "*"
base-path: /myboot # 自己配置路径
server:
port: 9091 # 自己配置端口
address: 127.0.0.1 # 表示本地才可以启动这个命令
}
服务器直接模拟请求
curl -X POST localhost:9091/myboot/shutdown
出现
{"message":"Shutting down, bye..."}
线程已经关闭
网友评论