当前位置:   article > 正文

spring boot 官方guides中的/actuator/shutdown

actuator/shutdown

spring boot 官方guides中的

There is also a /actuator/shutdown endpoint, but it’s only visible by default via JMX. To enable it as an HTTP endpoint, add management.endpoints.shutdown.enabled=true to your application.properties file.

也就是说,我们可以通过localhost:8080/actuator/shutdown来停止服务器。当然这个功能开起来风险比较大。但官网提出来了,个人想试试。但按照官网的方法,在application.properties中添加management.endpoints.shutdown.enabled=true不好用。在网上找了半天资料,结合自己的尝试成功了,在此分享一下。
总共分2步
第一步:在application.properties中添加如下代码
#启用shutdown
management.endpoint.shutdown.enabled=true
#开启所有的端点
management.endpoints.web.exposure.include=*

这时候我们请求,后台会提示 Request method ‘GET’ not supported。也就是说不支持get请求,我们需要用post.

第二步:按照官网的说明,执行$ curl -X POST localhost:8080/actuator/shutdown
windows在cmd中执行即可。
这时候,就会提示 {“message”:“Shutting down, bye…”}。

再访问应用,就已经停掉了。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/花生_TL007/article/detail/334238
推荐阅读
相关标签
  

闽ICP备14008679号