Afterword
In this book, we covered the main topics related to microservices architecture. We started with a look inside a Spring Boot application, traveling from an empty project to a microservice properly structured in layers. While working with the different aspects of our application, such as REST services or JPA repositories, we unveiled the magic behind Spring Boot. Besides, to build this first application, we followed a test-driven development approach that can help you clarify your functional requirements in the future.
The book tried to explain from the beginning why it’s a good idea to start with a small monolith. Actually, it’s an idea supported by many people very experienced with microservices: start with a single project, identify ...