POM依賴
在需要實(shí)現(xiàn)優(yōu)雅關(guān)閉的應(yīng)用工程中增加下述依賴:部分啟動(dòng)器默認(rèn)就依賴了Actuator啟動(dòng)器,如:spring-cloud-starter-netflix-eureka-server,那么下述依賴是可以省略的。
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
配置文件:文章來(lái)源:http://www.zghlxwxcb.cn/news/detail-641409.html
management:
endpoints:
# 所有功能默認(rèn)開啟
enabled-by-default: true
# 顯示所有已啟用功能
web:
exposure:
include: shutdown # '*' 代表所有
Actuator提供的優(yōu)雅關(guān)閉服務(wù)地址是: http://IP:Port/actuator/shutdown 。 必須使用POST請(qǐng)求訪問(wèn)此路徑地址。文章來(lái)源地址http://www.zghlxwxcb.cn/news/detail-641409.html
到了這里,關(guān)于Spring Boot應(yīng)用優(yōu)雅關(guān)閉的文章就介紹完了。如果您還想了解更多內(nèi)容,請(qǐng)?jiān)谟疑辖撬阉鱐OY模板網(wǎng)以前的文章或繼續(xù)瀏覽下面的相關(guān)文章,希望大家以后多多支持TOY模板網(wǎng)!