Summary
In this chapter, we have learned about some important microservice patterns and how they can help us to deliver a fault-tolerant, resilient, and error-prone application.
We have practiced how to use the service discovery feature provided by the Spring Framework and how it works at the application runtime, and we made some debug tasks to help us to understand how it works under the hood.
The Hystrix project, hosted by Netflix, can increase our application's resilience and fault tolerance. When working with remote calls, in this section, we made some Hystrix commands and understood how Hystrix is a useful implementation of the Circuit Breaker pattern.
At the end of the chapter, we are able to understand the microservices drawbacks and how to solve the common problems in a distributed environment.
Now we know how to solve the common problems of microservices architectural style using the Spring Framework.
In the next chapter, we will finish our Airline Ticket System, using the configured...