我对 zuul 完全陌生,但由于我们在配置中所做的一些更改,我面临着我似乎无法克服的挑战。
在这种情况下,Zuul 仅用于重写一些 url,仅此而已。它在各种其他环境中都可以正常工作,并且在我们进行这些更改之前一直在这个环境中工作。
zuul 配置看起来像这样..
spring:
profiles: development
zuul:
routes:
fakebank:
path: /fake-bank/rest/projects/fakebank/**
url: https://dev-fakebank-api.fkebnk.com/office-365/rest
fakebank2:
path: /rest/projects/fakebank/**
url: https://dev-fakebank-api.fkebnk.com/office-365/res
但是,当我访问要重写的 URL 时,例如https://dev-api.fakebank.com/fake-bank/rest/projects/fake-bank/health-check
,我只是不断收到以下错误:
Whitelabel Error Page
This application has no explicit mapping for /error, so you are seeing this as a fallback.
Thu Jun 23 17:48:24 UTC 2016
There was an unexpected error (type=Internal Server Error, status=500).
connect timed out
有没有人有任何想法或可以指出我开始走路的好方向?
提前致谢。