How to configure multiple addresses in Zuul routing

how to configure multiple addresses in Zuul routing
for example,
`archivecenter:

  path:     /service/archive/**,/service/controls/**,/service/before/**,/service/materials/**,/service/materials/**,/service/appraisal/**,/service/report/**`
  

I think when mapping so many paths at the same time, it is not possible to write this;
and then writing multiple path will fail to read the configuration file.

Mar.28,2021

has been resolved.. This situation can be solved by using multiple serviceId;
will be sorted out later.


ask for advice, The problem is how to solve


if it is a nacos configuration zuul, you can write the following configuration in the nacos configuration zuul file:
zuul:
routes:
application:
stripPrefix: false
path: / application1/ *
application2:
stripPrefix: false
path: / application2/ *

Menu