轮询的入站通道适配器

概述

版本 5.0.1 引入了轮询通道适配器,允许您按需获取单个消息 - 例如,使用 a 或 poller。 有关更多信息,请参阅 Deferred Acknowledgment Pollable Message Source (延迟确认轮询消息源) 以了解更多信息。MessageSourcePollingTemplatespring-doc.cn

它当前不支持 XML 配置。spring-doc.cn

以下示例说明如何配置 :AmqpMessageSourcespring-doc.cn

@Bean
public IntegrationFlow flow() {
    return IntegrationFlow.from(Amqp.inboundPolledAdapter(connectionFactory(), DSL_QUEUE),
                    e -> e.poller(Pollers.fixedDelay(1_000)).autoStartup(false))
            .handle(p -> {
                ...
            })
            .get();
}
@Bean
public AmqpMessageSource source(ConnectionFactory connectionFactory) {
    return new AmqpMessageSource(connectionFactory, "someQueue");
}

有关配置属性,请参阅 Javadocspring-doc.cn

XML 格式
This adapter currently does not have XML configuration support.

批量消息

对于轮询的适配器,没有侦听器容器,批处理的消息始终是 Debatched(如果支持这样做)。BatchingStrategyspring-doc.cn