From one side you should understand that it is enough big work to address them all. For example HTTP module is on our radar for the 1.1
release.
From other side the Spring Integration Java DSL is just an edition to the existing Spring Java & Annotation configuration, so any @Bean
definition is valid there, too.
With those desired protocols you can go ahead and configure their components as @Bean
and refer them from the .handle()
or .from()
EIP-methods.
For example:
@Bean
public MessageSource<Object> jdbcMessageSource() {
return new JdbcPollingChannelAdapter(this.dataSource, "SELECT * FROM foo");
}
@Bean
public IntegrationFlow myFlow() {
return IntegrationFlows.from(jdbcMessageSource())
.split(...)
.transform(...)
.handle(new MqttPahoMessageHandler("tcp://localhost:1883", "si-test-out"))
.get();
}