This post can be useful for everyone who wants to have insights on their application’s internal architecture when integrating with other systems using Spring Integration. From the developer that just started in your team and who wants to have an overview, to the seasoned team member that needs to troubleshoot a problem in production.

Currently we are working on the phased roll out of a microservices architecture at one of our clients. To ensure that everything works as it’s supposed to we are using a lot of Enterprise Integration Patterns to stitch both the old and the new landscape together. The best way to achieve a solution when using Java, is to use Spring Integration. A few days ago we wanted to have clear insights on how certain microservices are communicating with the existing systems.

Creating your graph of Spring Integration components and flows

A first step to expose your Spring Integration components and flows is to add an IntegrationGraphServer bean to your application. This class resides in the o.s.i.support.management.graph package, between all the required classes to collect, build and render the runtime state of Spring Integration components as a single tree-like Graph object.

Exposing the graph

Using the Spring Integration HTTP module you can easily expose the IntegrationGraphServer functionality as a REST service. Just add the @EnableIntegrationGraphController annotation to your application, and you’re good to go! Or, in case you are using XML config, add the <int-http:graph-controller/> XML element to your setup. Be sure to edit the allowedOrigins attribute of the annotation in case you’re accessing the endpoint between 2 domains. Sidenote: your application needs to be deployed on a web container, or it needs to use an embedded web container in case you are building on top of Spring Boot.

Visualizing the exposed graph of components and flows

With D3.js we are able to visualize everything within our graph. In this quick & dirty gist I created, you can find a simple example of a possible visualisation. Download the index.html file, point the script to the correct endpoint by editing the graphEndpoint variable, open the file in your browser and you should see every component and flow!

As Gary Russell pointed out in his reply to my tweet you can also use Spring Flo for the visualization. Spring Flo is an Angular based, embeddable graphical component for pipeline/graph building and editing. This is used as the basis of the stream builder in Spring Cloud Data Flow. You can find the sample application here.

Taking it one step further

If you add the @EnableIntegrationManagement annotation or the <int:management /> XML element to your setup, the graph will even expose all the metrics of your Spring Integration components. This will definitely help you out when you want to monitor your components and flows, enabling you to troubleshoot problems even faster in case something goes wrong in production.

Tim is a Principal Consultant at Ordina, where he helps fellow developers discovering top-notch technologies and methodologies as a Competence Leader for API & Microservices. You can also find him working on various parts of the Spring framework or helping out at NG-BE. When you can't get a hold of him, he will probably be under water since he is also an underwater photographer & rescue diver.