Zuul小技巧 /routes
Zuul有一个非常实用的 /routes
端点,当Zuul没有按照我们的计划去转发请求!
访问 $ZUUL_URL/routes
即可查看当前Zuul的路由规则,从而在很多情况下能够帮助我们定位Zuul的问题:
{ /sample-service/**: "sample-service" } // 这段JSON表示:如果请求$ZUUL_URL/sample-service/**,Zuul会将请求转发到注册在Eureka Server上的sample-service服务的/**。
Doing is better than nothing