Spring Cloud API gateway not working after deploying it on tomcat
Advertisements After deploying the gateway war file on tomcat not able to access it. application.yml file setup server: port: 9000 servlet: context-path: /gateway spring: cloud: gateway: routes: – id: mysqlservice uri: http://localhost:8080 predicates: – Path= /gateway/mysql/** filters: – StripPrefix=1 – id: xyzservice uri: http://localhost:8080 predicates: – Path= /gateway/xyz/** filters: – StripPrefix=1 – id: lightservice uri:… Read More Spring Cloud API gateway not working after deploying it on tomcat