尝试去POSThttp://localhost:3344/actuator/bus-refresh
发现:
"status": 405,
"error": "Method Not Allowed",
"message": "Request method 'POST' not supported",
"path": "/actuator/bus-refresh"
并且配置文件并没有更新,emm!
但是其实新版本,post链接不是这个了,去掉了-
,现在是
http://localhost:3344/actuator/busrefresh
成功!
为什么呢?访问
http://localhost:3344/actuator
看到如下内容:
{"_links":{"self":{"href":"http://localhost:3344/actuator","templated":false},"busrefresh-destinations":{"href":"http://localhost:3344/actuator/busrefresh/{*destinations}","templated":true},"busrefresh":{"href":"http://localhost:3344/actuator/busrefresh","templated":false}}}
![](https://img.haomeiwen.com/i24412352/2b6402b74633e4a1.png)
于是猜测链接改变了,于是改链接去POST,成功!
网友评论