Demo 1
Demo 1
At the end of this article, you will understand the following pointers.
Understanding Microservices using ASP.NET Core
What are Microservices?
Need of a Microservice
Advantages of Microservices
Difference between Monolith Architecture and Microservice
Microservices Architecture
Understanding API Gateway (Ocelot Gateway with example)
Features of API Gateway
Creating Microservices in ASP.NET core
Creating an API Gateway in ASP.NET Core
Creating API Gateway Project using Ocelot
Configure API Gateway and Integrate Microservices
Configuring Ocelot Routes in ASP.NET Core
Testing Microservices
Testing Microservice through API Gateway
The author has used dotnet 3.x with startup configuration class and there are possible issues with the port configurations. A simplified version given below.
Simplified version
Repository shown here implements gateway service using the article above, but the code is much simplified and does not use startup class.
Running the gateway
The gateway endpoints are:
https://localhost:45001/apigateway/AttendanceService https://localhost:45001/apigateway/AdmissionService
Output
We can see from the output below that the microservices are accessible directly and via the gateways as well!
Last updated