2018-01-01 16:50:05 +02:00
..
2017-11-28 20:55:52 +02:00
2018-01-01 16:50:05 +02:00
2018-01-01 16:50:05 +02:00
2018-01-01 16:50:05 +02:00
2017-11-28 21:28:53 +02:00

layout, title, folder, permalink, categories, tags
layout title folder permalink categories tags
pattern API Gateway api-gateway /patterns/api-gateway/ Architectural
Java
Difficulty-Intermediate
Spring

Intent

Aggregate calls to microservices in a single location: the API Gateway. The user makes a single call to the API Gateway, and the API Gateway then calls each relevant microservice.

alt text

Applicability

Use the API Gateway pattern when

  • you're also using the Microservices pattern and need a single point of aggregation for your microservice calls

Credits