Spring Cloud PrefixPath GatewayFilter工厂
2024-01-04 17:42 更新
PrefixPath
GatewayFilter工厂采用单个prefix
参数。
application.yml。
spring: cloud: gateway: routes: - id: prefixpath_route uri: https://example.org filters: - PrefixPath=/mypath
这会将/mypath
作为所有匹配请求的路径的前缀。因此,对/hello
的请求将被发送到/mypath/hello
。
以上内容是否对您有帮助:
更多建议: