gpt4 book ai didi

java - 如何忽略zuul中的路由?

转载 作者:太空宇宙 更新时间:2023-11-04 10:30:50 24 4
gpt4 key购买 nike

我有一个 spring 应用程序,其中使用 zuul 进行路由。我的路由配置是这样的:

zuul:
routes:
core:
path: /core/**
url: http://localhost:3002
ui:
path: /**
url: http://localhost:3003

现在我在我的应用程序中定义了一个休息 Controller ,它除了路由之外还应该提供 captcah 服务。所以我使用了 ignored-services:/captcha/** 甚至 ignored-patterns:/captcha/**

但它不起作用,对 captcah 的请求被路由到 ui 路径。

我使用的zuul版本是:org.springframework.cloud:spring-cloud-starter-zuul:1.0.3.RELEASE

最佳答案

它的ignoredPatterns而不是ignore-pattern

zuul:
ignoredPatterns:
- ...........
routes:
core:
path: /core/**
url: http://localhost:3002
ui:
path: /**
url: http://localhost:3003

关于java - 如何忽略zuul中的路由?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50014982/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com