Skip to content

Commit 28d259a

Browse files
iluwatar#297 Create README.md
1 parent 9a9df80 commit 28d259a

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

api-gateway/README.md

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
---
2+
layout: pattern
3+
title: API Gateway
4+
folder: api-gateway
5+
permalink: /patterns/api-gateway/
6+
categories: Other
7+
tags:
8+
- Java
9+
- Difficulty-Beginner
10+
11+
## Intent
12+
13+
Aggregate calls to microservices in a single location: the API Gateway. The user makes a single
14+
call to the API Gateway, and the API Gateway then calls each relevant microservice.
15+
16+
![alt text](./etc/api-gateway.png "API Gateway")
17+
18+
## Applicability
19+
20+
Use the API Gateway pattern when
21+
22+
* you're also using the Microservices pattern and need a single point of aggregation for your
23+
microservice calls
24+
25+
## Credits
26+
27+
* [microservices.io - API Gateway](http://microservices.io/patterns/apigateway.html)
28+
* [NGINX - Building Microservices: Using an API Gateway](https://www.nginx.com/blog/building-microservices-using-an-api-gateway/)

0 commit comments

Comments
 (0)