This chapter covers:
- A nearly complete implementation of the Shopping Cart microservice
- Creating HTTP endpoints with MVC Core
- Implementing a request from one microservice to another
- Implementing a simple event feed for a microservice
In chapter 1, we looked at how microservices work and how they can be characterized. You also set up a simple technology stack—C#/MVC Core/ASP.NET Core—that lets you create microservices easily, and you saw a basic Shopping Cart microservice. In this chapter, you’ll implement the four main parts of this microservice using the same technology stack:
- A basic HTTP-based API allowing clients to retrieve a cart, delete it, and add items to it. Each of these methods will be visible as an HTTP endpoint, such as http://myservice/add/{item_number}.
- A call from one service to another for more information. In this case, the Shopping Cart microservice will ask the Product Catalog microservice for pricing information based on the
item_number
of the item being added to the cart.
- An event feed that the service will use to publish events to the rest of the system. By creating an event feed for the shopping cart, you’ll make it possible for other services (such as a recommendation engine) to update their own data and improve their capabilities.
- The domain logic for implementing the behavior of the shopping cart.