I have a springboot application. The endpoints are secured, they need jwt token authorization inorder to be accessed. There is an endpoint in the application, which accepts username and password and returns a jwt token. Now this token can be set in the authorization header and the other secure api's can be accessed.
I have another springboot application which is acting as zuul api gateway. How do I call my secure api through this zuul application. I am new to microservices architecture. Please advise.