In this chapter, we have learned about various microservice management features: load balancing, edge (gateway) servers, circuit breakers, and monitoring. You should now know how to implement load balancing and routing after going through this chapter. We have also learned how edge servers can be set up and configured. The failsafe mechanism is another important part that you have learned in this chapter. Deployment can be made simple by using Docker or any other container. Docker was demonstrated and integrated using Maven Build.
From a testing point of view, we performed the integration testing on the Docker image of the service. We also explored the way we can write clients such as RestTemplate and Netflix Feign.
In the next chapter, we will learn to secure the microservices with respect to authentication and authorization. We will also explore the other aspects of...