Spring Cloud SetPath GatewayFilter工厂
2024-01-05 17:36 更新
SetPath
GatewayFilter工厂采用路径template
参数。通过允许路径的模板段,它提供了一种操作请求路径的简单方法。这将使用Spring Framework中的uri模板。允许多个匹配段。
application.yml。
spring: cloud: gateway: routes: - id: setpath_route uri: https://example.org predicates: - Path=/foo/{segment} filters: - SetPath=/{segment}
对于/foo/bar
的请求路径,这将在发出下游请求之前将路径设置为/bar
。
以上内容是否对您有帮助:
更多建议: