Spring Cloud 方法路线谓词工厂
2024-01-04 17:23 更新
Method
路由谓词工厂采用一个methods
参数,该参数是一个或多个要匹配的HTTP方法。
application.yml。
spring: cloud: gateway: routes: - id: method_route uri: https://example.org predicates: - Method=GET,POST
如果请求方法是GET
或POST
,则此路由将匹配。
以上内容是否对您有帮助:
更多建议: