如何忽略zuul中的路线?

时间:2018-04-25 05:59:45

标签: java spring netflix-zuul

我有一个spring应用程序,我在其中使用zuul进行路由。我的路由配置如下:

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

现在我在我的应用程序中定义了一个休息控制器,它应该在其路由旁边提供captcah服务。所以我使用ignored-services: /captcha/**甚至ignored-patterns: /captcha/**

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

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

1 个答案:

答案 0 :(得分:0)

其ignoredPatterns而不是ignored-pattern

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