Zuul routing with same endpoint but different services -


i want have routes shown below :

   zuul:      prefix:/a      stripprefix:true      routes:            route1:           path:/v1           serviceid: service1           stripprefix:false          route2:           path:/v1           serviceid: service2           stripprefix:false  

but every time request endpoint v1 on service2 results service1. how set properties such can have same end point on 2 different services?


Comments