So far, you have learned how to create microservices using RPC communication. You also learned how it is synchronous communication requiring a request and a response. In this chapter, you will create two microservices using messaging’s asynchronous communication method to fulfill some business needs regarding invoice management.
Issues with Synchronous Communication
Before we dive into messaging communication, let us first understand why messaging is a viable option. ...