当前位置:   article > 正文

Spring Cloud Alibaba集成Spring Cloud Gateway踩坑之一_unable to find routepredicatefactory with name str

unable to find routepredicatefactory with name stripprefix

第一个坑

resources下的文件名称只能是bootstrap.properties或者bootstrap.yml 其他的会报

create config service error 错误

重点

  1. - id: SHOP-CONSUMER # 消费者服务名 大写
  2. uri: lb://shop-consumer # 消费者服务名
  3. predicates:
  4. - Path=/api/test/**
  5. filters:
  6. # 前缀过滤,默认配置下
  7. # 我们的请求路径是 http://localhost:9000/shop/** 这时会路由到指定的服务
  8. # 此处配置[StripPrefix=1] 是去掉 1 个路径前缀,再配置上面的 Path=/api/**,
  9. # 就能按照 http://localhost:9000/api/** 的方式访问了
  10. - StripPrefix=1

第二个

Path=/api/test/**  这里不能有空格

错误:Unable to find RoutePredicateFactory with name Path 

第三个

Method=GET,POST Method 的首字母必须大写 

错误:Unable to find RoutePredicateFactory with name method 

推荐阅读 :Spring-Cloud-Gateway 源码解析 —— 处理器 (3.1) 之 RoutePredicateFactory 路由谓语工厂

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

闽ICP备14008679号