I am planning to use control bus feature in spring integration for managing inbound endpoints i.e. inbound file adapter,message driven adapter etc.
In order for control bus to work , adapter id is mandatory. I don't want to hard code the id. Is there a way to list all inbound adapters and get Id ?
org.springframework.integration.annotation.Role
in Spring Integration DSL. I tried using @Role annotation on IntegrationFlow bean, however when i queried forroleController.getRoles()
and empty list was returned. @Role works with @ServiceActiviator and other Spring Integration java configuration but how to use it with Spring Integration DSL? – Ganesh