I've recently discovered MessagePack, which seems to be an interesting alternative to JSONs. If I'd like to use it in a Java Microservices Architecture, how can I make microservices talk between each other? Currently, I'm using the following stack:
- Spring Boot
- Spring Cloud (+ Eureka, RabbitQM, Zuul)
What I've found is a sort of converter that was, actually, written for a monolithic application. But what about the communication between microservices, so, the stream of messages? How can I combinate MessagePack with the Microservices Architecture?