我使用Zuul作为使用Spring Boot部署为服务的反向代理。我的配置如下:
zuul:
routes:
home:
path: /**
url: localhost:8080
但我想使用zuul服务器的/ routes,/ info,/ health端点。我还想为zuul服务器添加一些端点。问题是我丢失了这些端点,因为所有请求都被路由到localhost:8080。
答案 0 :(得分:4)
最新版ZUUL中的ignoredPatterns可以帮助防止达到/ **映射:
zuul:
ignoredPatterns: "/routes/**,/info/**,/custom/**"