POM依赖
在需要实现优雅关闭的应用工程中增加下述依赖:部分启动器默认就依赖了Actuator启动器,如:spring-cloud-starter-netflix-eureka-server,那么下述依赖是可以省略的。
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
配置文件:文章来源:https://www.toymoban.com/news/detail-641409.html
management:
endpoints:
# 所有功能默认开启
enabled-by-default: true
# 显示所有已启用功能
web:
exposure:
include: shutdown # '*' 代表所有
Actuator提供的优雅关闭服务地址是: http://IP:Port/actuator/shutdown 。 必须使用POST请求访问此路径地址。文章来源地址https://www.toymoban.com/news/detail-641409.html
到了这里,关于Spring Boot应用优雅关闭的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!