We have most of our application logic using typical Springboot components.
We are looking at using spring boot integration. The flow is to provision servie for end user. Typically we get a request and it has to orchestrate by calling a bunch of other services, with conditional branching and the end result is the user is provisioned.
What is the best way to implement this in Spring integration ? Is there any way to link them dynamically based on the output of the previous step ?
thank you