Spring Cloud Gateway 5 权重路由

Posted 路迢迢

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Spring Cloud Gateway 5 权重路由相关的知识,希望对你有一定的参考价值。

Spring Cloud Gateway 权重路由

使用场景:需要多版本服务控制的时候,需要对服务进行权重路由,最常见的场景就是一个服务有两个版本V1,V2,在线上灰度的时候,需要忘光动态实时推送路由的权重信息,如95的流量到V1,5的流量到V2.

spring:
  cloud:
    gateway:
      routes:
      - id: service1_v1
        uri: http://localhost:8081/v1
        predicates:
        - Path=/test
        - Weight=service1, 95
      - id: service1_v2
        uri: http://localhost:8081/v2
        predicates:
        - Path=/test
        - Weight=service1, 5

Weight=service1, 5 是权重设置

以上是关于Spring Cloud Gateway 5 权重路由的主要内容,如果未能解决你的问题,请参考以下文章

Spring Cloud Gateway快速入门

java学习---spring-cloud-gateway网关配置

Spring Cloud 组件 —— gateway

Spring Cloud Gateway:retry 与 fallback

Spring MVC found on classpath, which is incompatible with Spring Cloud Gateway.

spring cloud gateway + oauth2 实现网关统一权限认证