Spring启动+云| Zuul 代理 |追加 URL/rewrite
Spring Boot + Cloud | Zuul Proxy | Append a URL/rewrite
我正在使用 Spring 引导 + 云 | Zuul 代理(org.springframework.cloud:spring-cloud-starter-zuul:1.0.0.RELEASE)。我有以下配置。
info:
component: Zuul Server
endpoints:
restart:
enabled: true
shutdown:
enabled: true
health:
sensitive: false
zuul:
ignoredServices: "*"
proxy:
mapping: /api/v1
addProxyHeaders: true
routes:
service:
path: /service/**
serviceId: service
stripPrefix: false
server:
port: 8765
logging:
level:
ROOT: INFO
org.springframework.web: INFO
eureka:
instance:
preferIpAddress: true
client:
serviceUrl:
defaultZone: http://localhost:8761/eureka/
我希望访问权限 URL 以 http://localhost:8765/api/v1/service as done in the above configuration(ref: https://github.com/joshlong/microservices-lab/blob/master/api-gateway/gateway/src/main/resources/application.yml 的身份提供服务。
但这不起作用,URL http://localhost:8765/service 有效。
有没有办法实现这个,因为我不希望单个服务具有 /api/v1 上下文。
不确定您从哪里获得 zuul.proxy.*
选项。它们无效。 zuul.addProxyHeaders
有效。
你要的是zuul.prefix=/api/v1
。默认是在转发时去除该前缀。所以 /api/v1/service
转发到 /service
.
我正在使用 Spring 引导 + 云 | Zuul 代理(org.springframework.cloud:spring-cloud-starter-zuul:1.0.0.RELEASE)。我有以下配置。
info:
component: Zuul Server
endpoints:
restart:
enabled: true
shutdown:
enabled: true
health:
sensitive: false
zuul:
ignoredServices: "*"
proxy:
mapping: /api/v1
addProxyHeaders: true
routes:
service:
path: /service/**
serviceId: service
stripPrefix: false
server:
port: 8765
logging:
level:
ROOT: INFO
org.springframework.web: INFO
eureka:
instance:
preferIpAddress: true
client:
serviceUrl:
defaultZone: http://localhost:8761/eureka/
我希望访问权限 URL 以 http://localhost:8765/api/v1/service as done in the above configuration(ref: https://github.com/joshlong/microservices-lab/blob/master/api-gateway/gateway/src/main/resources/application.yml 的身份提供服务。
但这不起作用,URL http://localhost:8765/service 有效。
有没有办法实现这个,因为我不希望单个服务具有 /api/v1 上下文。
不确定您从哪里获得 zuul.proxy.*
选项。它们无效。 zuul.addProxyHeaders
有效。
你要的是zuul.prefix=/api/v1
。默认是在转发时去除该前缀。所以 /api/v1/service
转发到 /service
.