gpt4 book ai didi

spring-integration - Spring 集成聚合器 DSL 的错误 'is a one-way ' MessageHandler'

转载 作者:行者123 更新时间:2023-12-04 00:13:01 30 4
gpt4 key购买 nike

我正在尝试使用 DSL 测试一些带有 spring-integration 的东西。到目前为止这只是一个测试,流程很简单:

  • 创建一些消息
  • 并行处理(记录)它们
  • 聚合它们
  • 记录聚合

除了聚合器,它工作正常:

@Bean
public IntegrationFlow integrationFlow() {
return IntegrationFlows
.from(integerMessageSource(), c -> c.poller(Pollers.fixedRate(1, TimeUnit.SECONDS)))
.channel(MessageChannels.executor(Executors.newCachedThreadPool()))
.handle((GenericHandler<Integer>) (payload, headers) -> {
System.out.println("\t delaying message:" + payload + " on thread "
+ Thread.currentThread().getName());
try {
Thread.sleep(2000);
} catch (InterruptedException e) {
System.err.println(e.getMessage());
}
return payload;
})
.handle(this::logMessage)
.aggregate(a ->
a.releaseStrategy(g -> g.size()>10)
.outputProcessor(g ->
g.getMessages()
.stream()
.map(e -> e.getPayload().toString())
.collect(Collectors.joining(",")))

)
.handle(this::logMessage)
.get();

}

如果我省略了 .aggregate(..), 部分,示例就可以工作了。

使用聚合器,我得到以下异常:

Caused by: org.springframework.beans.factory.BeanCreationException: The 'currentComponent' (org.faboo.test.ParallelIntegrationApplication$$Lambda$9/1341404543@6fe1b4fb) is a one-way 'MessageHandler' and it isn't appropriate to configure 'outputChannel'. This is the end of the integration flow.

据我了解,它提示聚合器没有输出?

完整的源代码可以在这里找到:hithub

最佳答案

问题是 handle()在聚合器之前 - 它不产生任何结果,所以没有什么可聚合的......

        .handle(this::logMessage)
.aggregate(a ->

大概是logMessage(Message<?>)有一个 void返回类型。

如果您想在聚合器之前登录,请使用 wireTap , 或更改 logMessage返回 Message<?>登录后。

        .wireTap(sf -> sf.handle(this::logMessage))

关于spring-integration - Spring 集成聚合器 DSL 的错误 'is a one-way ' MessageHandler',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40725701/

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