SpringCloudGateway路由到带有context-path的微服务总是404的问题

问题描述

使用SpringCloudGateway路由到带有content-path的微服务时总是404。此时的gateway的配置文件以及微服务的配置文件如下:
(此处省略其它配置)
gateway

	...
      routes:
        - id: acl_service_other
          uri: lb://acl-other-server
          predicates:
            - Path=/other/{segment}
   	...
server:
  port: 8000

service1

...
server:
  port: 9001
  servlet:
    context-path: /other
...

此时通过请求http://localhost:8000/other/test2/test2,总是报404
(经过测试,如果微服务中没有context-path,修改Path =/test2/{segment} http://localhost:8000/test2/test2是可以正常路由的)

问题处理

  1. 修改gateway的配置文件如下
      routes:
        - id: acl_service_other
          uri: lb://acl-other-server
          predicates:
            - Path=/other/**
          filters:
            ##由于微服务acl-other-server中设置了server.servlet.context-path=/other,要重写路径才能正常路由到该微服务
            - RewritePath=/other/?(?<segment>.*), /other/$\{segment}
  1. 重启gateway,http://localhost:8000/other/test2/test2请求成功!!

至于原因,烦请了解的大神留言~

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值