Spring Cloud Gateway去掉url前缀 主要是增加一个 route,其他配置不变 routes: - id: service_customer uri: lb://CONSUMER order: 0 predicates: - Path=/customer/** filters: - StripPrefix=1 - AddResponseHeader=X-Response-Default-
Spring Cloud Gateway去掉url前缀
主要是增加一个 route,其他配置不变
routes: - id: service_customer uri: lb://CONSUMER order: 0 predicates: - Path=/customer/** filters: - StripPrefix=1 - AddResponseHeader=X-Response-Default-Foo, Default-Bar
新增的StripPrefix可以接受一个非负整数,对应的具体实现是StripPrefixGatewayFilterFactory,从名字就可以看出它的作用是去掉前缀的,那个整数即对应层数。
具体到本例中,我们通过 Spring Cloud Gateway 访问 /customer/hello/windmt,那么当网关服务向后转发请求时,会去掉/customer,微服务收到的就是/hello/windmt。
Spring Cloud中eureka.instance为前缀的的常用配置参数说明
注意:
org.springframework.cloud.netflix.eureka.EurekaInstanceConfigBean
类中,可以查看各个参数的默认值。
以上为个人经验,希望能给大家一个参考,也希望大家多多支持自由互联。