我有一个@EnableZuulProxy
的项目,
我想知道是否有可能调用多个服务的路由,例如:
zuul.routes.serviceI.path = /document/upload
zuul.routes.serviceI.url = http://localhost:8081/serviceI
zuul.routes.serviceII.path = /document/file
zuul.routes.serviceII.url = http://localhost:8082/serviceII
zuul.routes.serviceIII.path = /document/*
zuul.routes.serviceIII.url = http://localhost:8083/serviceIII
当我尝试执行此操作时,总是会出现错误404。