Build your own API Gateway from Scratch in Java
0xkishan.com·11h·
Discuss: r/programming
Flag this post

While working in software engineering or preparing for a job interview you often would have come across a service called API Gateway. You might also be knowing at a very high level that it is the very first service that your request lands on and from there it is routed correctly to your microservices.

To give you a more formal introduction:

An API Gateway is a server that acts as an entry point for all your API requests from client to target application or services.

Let’s understand why we even need an API Gateway, that way we will get a better understanding of their importance in the micro service architecture. But first let’s also understand what is a microservice architecture.

Think of microservice architecture as a practice where we split our application say, instagram in two …

Similar Posts

Loading similar posts...