安全地停止SpringBoot应用服务
对于休眠中的线程, 直接抛中断异常,不给前端返回值. 对于执行中线程, 则在线程请求结束,并且返回值传给前端后结束
1. 在pom.xml
中引入actuator
依赖
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
2. 开启shutdown endpoint
Spring Boot Actuator
的shutdown endpoin
t默认是关闭的,因此在application.properties
中开启shutdown endpoint
:
#启用shutdown
endpoints.shutdown.enabled=true
#禁用密码验证
endpoints.shutdown.sensitive=false
3. 发送shutdown
信号
shutdown
的默认url
为host:port/shutdown
,当需要停止服务时,向服务器post
该请求即可,如:curl -X POST host:port/shutdown
将得到形如{"message":"Shutting down, bye..."}
的响应
4. 安全设置
可以看出,使用该方法可以非常方便的进行远程操作,但是需要注意的是,正式使用时,必须对该请求进行必要的安全设置,比如借助spring-boot-starter-security
进行身份认证:
pom.xml添加security依赖
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-security</artifactId> </dependency>
开启安全验证
在application.properties
中变更配置,并#开启shutdown的安全验证 endpoints.shutdown.sensitive=true #验证用户名 security.user.name=admin #验证密码 security.user.password=secret #角色 management.security.role=SUPERUSER
指定路径、IP、端口
#指定shutdown endpoint的路径 endpoints.shutdown.path=/custompath #也可以统一指定所有endpoints的路径`management.context-path=/manage` #指定管理端口和IP management.port=8081 management.address=127.0.0.1