我想知道在Spring集成中是否可以在流程中包含外部通道。所以我有 http 入站网关流,在它被触发后,它应该通过 udp 端口与其他进程通信。我最关心的是如何从这个流程中的udp端口接收消息。
@Bean
public IntegrationFlow httpInboundGatewayFlow() {
return IntegrationFlows.from(Http.inboundGateway(httpInboundPath))
.transform(niUdpRequestTransformer())
/*sending a message to udp port*/
.publishSubscribeChannel(runnable -> runnable
.subscribe(flow -> flow
.handle(udpOutboundChannel())))
/*wait for input from udpResponse channel here (HOW TO?)*/
/*process udpInboundFlow message*/
.handle((payload, headers) -> successNetworkResponse())))
.transform(new ObjectToJsonTransformer())
.handle((payload, headers) -> payload)
.get();
}
@Bean
public IntegrationFlow udpInboundFlow() {
return IntegrationFlows.from(udpInboundChannel())
.transform(niUdpResponseTransformer())
.channel("udpResponse")
.get();
}
使用udpInboundFlow应该被实现为某种轮询器,它检查是否有正确的消息到达。
感谢您的帮助。
答案 0 :(得分:2)
您所谈论的内容称为 correlation 。而且我不知何故相信您希望得到某种对UDP请求的回复。
所以,你需要的确是这样的:
.channel("udpResponse")
.aggregate(...)
您应该为请求消息找出一些correlationKey
,并确保来自UDP的回复具有相同的密钥。应为.releaseStrategy(group -> group.size() == 2)
配置聚合器。
第一条消息将是请求1,第二条消息确实来自外部udpResponse
。
有关详细信息,请参阅Reference Manual。