SpringCloud 路由端点
2023-11-23 11:46 更新
在/routes
处的路由端点的GET返回已映射路由的列表:
GET /路线。
{ /stores/**: "http://localhost:8081" }
可以通过将?format=details
查询字符串添加到/routes
来请求其他路由详细信息。这样做会产生以下输出:
获取/ routes / details。
{ "/stores/**": { "id": "stores", "fullPath": "/stores/**", "location": "http://localhost:8081", "path": "/**", "prefix": "/stores", "retryable": false, "customSensitiveHeaders": false, "prefixStripped": true } }
POST
至/routes
强制刷新现有路由(例如,当服务目录中发生更改时)。您可以通过将endpoints.routes.enabled
设置为false
来禁用此端点。
路由应该自动响应服务目录中的更改,但是从POST
到/routes
是强制更改立即进行的一种方法。
以上内容是否对您有帮助:
更多建议: