当前位置:   article > 正文

SpringCloudGateway 学习笔记 - yml 配置_spring cloud 跨域解决 yml配置详解

spring cloud 跨域解决 yml配置详解

路由谓词工厂

Route Predicate Factories

Path 拦截路径然后转发

用来拦截访问路径,并发到uri

public class PathRoutePredicateFactory 
	extends AbstractRoutePredicateFactory<PathRoutePredicateFactory.Config> 
{...}
  • 1
  • 2
  • 3

在这里插入图片描述
路径多时,写在一行不便阅读,可以分开:

spring:
  cloud:
    gateway:
      routes: 
        - id: my-route
          uri: http://192.168.2.107
          sensitiveHeaders: "*"
          predicates:
            - name: Path
              args:
                - /
                - /index.htm
                - /lib/**
                - /module/**
                - /handler/{segment}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15

网关过滤器工厂

GatewayFilter Factories

StripPrefix

6.25. The StripPrefix GatewayFilter Factory 接受一个参数 partsparts参数表示在下行发送请求之前从请求中剥离的路径中的部件数量。官方例子:

spring:
  cloud:
    gateway:
      routes:
      - id: nameRoot
        uri: https://nameservice
        predicates:
        - Path=/name/**
        filters:
        - StripPrefix=2
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  1. 请求 http://网关地址/name/blue/red 被网关拦截后
  2. 去掉两层路径得到:/red
  3. 最终转了到微服务的实际路径:https://nameservice/red

参考资料

路由规则 - 与其他章节在一页:5. Route Predicate Factories
路由规则 - 独立版:4. Route Predicate Factories - 4.8 Path Route Predicate Factory
Appendix A: Common application properties 常见属性

伊颦伊笑:Gatewa网关

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/很楠不爱3/article/detail/594454
推荐阅读
相关标签
  

闽ICP备14008679号