Just a simple question: Is there any way to configure Spring Integration Control Bus via annotations (without any xml)
The Spring Integration Java DSL provides the stuff on the matter:
@Bean public IntegrationFlow controlBusFlow() { return IntegrationFlows.from("operationChannel").controlBus().get(); }