I am trying to use Zuul within my Spring Boot project.
application.properties
server.context-path=/${spring.application.name}
zuul.routes.engine.path=/api/engine/**
zuul.routes.engine.url=${engine.url}
GET
requests are working; however, Zuul is not forwarding my POST
requests. I'm not seeing any of the debug output for either the GET
or POST
listed here: How To Use.
How do I enable DEBUG
logging mode for Zuul?
Set the property zuul.debug.request=true
.