0.背景

搭建spring cloud bus中,需要使用cmd发送post请求。

curl -X POST "http://localhost:20000/actuator/bus-refresh"

其中,20000是我config-server的端口。

然后报错:

{"timestamp":"2023-10-09T02:47:33.944+00:00","status":405,"error":"Method Not Allowed","path":"/actuator/bus-refresh"}

我们查看服务端的地址,查看最新链接

http://localhost:20000/actuator

可以看到最新的链接已经改变了,不在是bus-refresh,变成busrefresh了。所以我们把上面的改成:

curl -X POST "http://localhost:20000/actuator/busrefresh"