今天,我想一个问题是如何在yml配置中将mutli zuul.routes配置为一台没有'**'的服务器。
所以我试着去做。
yml config中有两种格式:
1. like object
zuul:
routes:
every name:
path: path
serviceId: server-name
重点开放值
zuul:
routes:
server-name: path
第一次成功,但是这次失败了。
我尝试第二种格式。
Excample:
> / first覆盖/ /,我发现zuul.routes是ZuulProperties中的Map,
/**
* Map of route names to properties.
*/
private Map<String, ZuulRoute> routes = new LinkedHashMap<>();
所以封面应该是map.put()。
zuul:
routes:
eureka-client-demo-01: /first
eureka-client-demo-01: /second
所以,我想知道如何在没有&#39; **&#39;的情况下将mutli zuul.routes配置到一台服务器在yml配置中并使用第二种格式