Implementation
As this chapter is just an introduction to microservices, we will not go the details of implementation. However, we will just have an overview of how we will implement different things in microservices. We have already discussed RESTful web service implementation in this book. However, here are some other pieces that come with microservices. So, we will just get idea of what is involved in implementing these parts.
Deployments
We will have deployments automated. We will continuous delivery tools. Continuous delivery is a process in which there are frequent deliveries with short cycles, and it ensures that software can be released at any time. It aims to release software faster and minimize risk with a build, and test and release software frequently approach.
Continuous delivery takes automation from source control all the way through production. There are various tools or processes that help in accomplishing a continuous delivery process. However, two important things in this...