赞
踩
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…”}。
再访问应用,就已经停掉了。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。