springcloud应用启动 访问gateway无法path无法路由到目标应用,404
当访问http://localhost:8080/nacos-provider-auth/test时报404错误这里处理方法有两种1.在目标应用添加context-pathserver:port: 8081servlet:context-path: "/nacos-provider-auth"2.去掉访问前缀StripPrefix,例如,StripPrefix=1请求/nacos-provider
·
当访问http://localhost:8080/nacos-provider-auth/test 时报404错误
这里处理方法有两种
1.在目标应用添加 context-path
server: port: 8081 servlet: context-path: "/nacos-provider-auth"
2.去掉访问前缀 StripPrefix, 例如,StripPrefix=1请求/nacos-provider-auth/test,去除掉前面一个前缀之后,最后转发到目标服务的路径为/test
spring: application: name: nacos-provider-gateway cloud: nacos: discovery: server-addr: 127.0.0.1:8848 gateway: discovery: locator: lower-case-service-id: true #将请求路径上的服务名配置为小写(因为服务注册的时候,向注册中心注册时将服务名转成大写的了,比如以/service-hi/*的请求路径被路由转发到服务名为service-hi的服务上 enabled: false #表明gateway开启服务注册和发现的功能,并且spring cloud gateway自动根据服务发现为每一个服务创建了一个router,# 这个router将以服务名开头的请求路径转发到对应的服务 routes: - id: nacos-provider-auth uri: lb://nacos-provider-auth order: -1 predicates: - Path=/nacos-provider-auth/** filters: - StripPrefix=1
更多推荐
已为社区贡献1条内容
所有评论(0)