gpt4 book ai didi

java - 具有两个来源的 Spring 集成流程

转载 作者:行者123 更新时间:2023-12-03 12:39:12 25 4
gpt4 key购买 nike

我尝试创建一个流程,它从 2 个源(1 个 mqtt 和一个来自用户服务交互)获取消息,并生成消息到另一个 mqtt。事实上,我尝试使用这个答案:How to crate Spring Integration Flow from two MessageProducerSpec?

这是我的结果:

@Bean
public IntegrationFlow mqttInFlow() {
return IntegrationFlows.from(mqttInbound())
.channel("mainMessageChannel")
.get();
}

@Bean
public IntegrationFlow mqttTestMessageFlow() {
return IntegrationFlows.from(messageService.testInbound())
.channel("mainMessageChannel")
.get();
}

@Bean
public IntegrationFlow mainMessageFlow() {
return IntegrationFlows.from("mainMessageChannel")
.handle(eventServiceHandler())
.split(operationSplitter())
.handle(mqttOutbound())
.get();
}

但是我有以下错误:

java.lang.IllegalStateException: 'outputChannel' or 'outputChannelName' is required
at org.springframework.util.Assert.state(Assert.java:70)
at org.springframework.integration.endpoint.MessageProducerSupport.afterSingletonsInstantiated(MessageProducerSupport.java:136)

最佳答案

那么,您必须在那些 MessageProducerSupport 定义中使用它,而不是像 channel("mainMessageChannel") 那样:

@Bean
MessageProducerSupport mqttInbound() {
...
adapter.setOutputChannelName("mainMessageChannel");
...
}

@Bean
MessageProducerSupport testInbound() {
...
adapter.setOutputChannelName("mainMessageChannel");
...
}

或者...只是不要对它们进行 @Bean 注释,Java DSL 会处理它们的声明!

关于java - 具有两个来源的 Spring 集成流程,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44356282/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com