我有一个特殊的 IntegrationFlow 配置如下
@Bean
public IntegrationFlow setupRabbitFlow() {
return IntegrationFlows.from(myInputChannel)
.handle((p, h) -> rabbitPublisher.publishToRabbit(p, h))
.get();
}
以及处理来自某些 XML 文件的传入数据的其他一些流程,例如此处所示Polling from file using Java DSL - 添加 Files.inboundAdapter 时出现编译错误。在该流程结束时,我想将 Message 传递给上述发送兔子的“接收器”。我该如何声明?