I've a question about the global architecture of multiple webapplications and zuul. With a classic webapp my pages talk to the webserver that hosts my webapp. With zuul do my pages need to directly talk to my zuul server.... and then be redirected to the appropriate service?
Asked
Active
Viewed 347 times
1 Answers
1
Yes. Zuul acts as a gateway to your microservices, so that your web application doesn't need to be aware of each microservice.
All the requests from web app will land on Zuul gateway which will call appropriate one/multiple microservice(s) to cater the request.

S.K.
- 3,597
- 2
- 16
- 31
-
Ok, so my webapp becomes a proxy for my webservices – Erik Gollot Jul 01 '16 at 18:50
-
Yes. Zuul actually acts as a reverse proxy here. It retrieves the resources from other microservices on behalf of your webapp. – S.K. Jul 04 '16 at 11:12