版本
java version: 17
spring boot: 3.2.x
spring cloud: 2023.0.3
现象
参考Spring Cloud Gateway -> Actuator API -> Refreshing the Route Cache 说明,先修改routes配置再调用/actuator/gateway/refresh
,接口返回200 status
,但/actuator/gateway/routes
接口返回数据不变。
后来改用Spring Cloud Commons提供的/actuator/refresh
却可以刷新生效,/actuator/gateway/routes
接口查询出来最新的路由配置。因此我怀疑是/actuator/gateway/refresh
在2023.0.3
版本中可以能存在问题。