We have a microservices architecture, i.e. each of the main components of our system is designed to be run as a separate Java app (jar or war).
We use Spring Integration to facilitate communication between the components (over a MQ service).
How can we get a graphical diagram of the whole integration layer of the system, given that each component has its own Spring Integration XML config?
Note that we know how to do it within a single application. The question is how to do it cross-app.
Example: Component 1 generates stream of POJOs -> MQ -> Component 2 serializes POJO object graph to JSON -> MQ -> Component 3 saves JSON to DB
Also, if a viable solution would be to create a single Spring Integration config, then how to make sure all components use it?