文件聚合器

从版本 5.5 开始,引入了 a 以在启用 START/END 标记时覆盖用例的另一端。 为方便起见,它实现了所有三种 sequence details 策略:FileAggregatorFileSplitterFileAggregatorspring-doc.cn

  • with the attribute 用于相关键计算。 在 上启用标记后,它不会填充序列详细信息标头,因为 START/END 标记消息也包含在序列大小中。 仍会为发出的每一行填充 ,包括 START/END 标记消息。HeaderAttributeCorrelationStrategyFileHeaders.FILENAMEFileSplitterFileHeaders.FILENAMEspring-doc.cn

  • 的 - 检查组中的消息,然后将标头值与组大小减去 - 实例进行比较。 它还实现了一个方便的 contact for 函数,以便在 . 有关更多信息,请参阅 Message Group ConditionFileMarkerReleaseStrategyFileSplitter.FileMarker.Mark.ENDFileHeaders.LINE_COUNT2FileSplitter.FileMarkerGroupConditionProviderconditionSupplierAbstractCorrelatingMessageHandlerspring-doc.cn

  • 只需从组中删除消息,并将其余消息收集到列表有效负载中以生成。FileAggregatingMessageGroupProcessorFileSplitter.FileMarkerspring-doc.cn

以下清单显示了配置 :FileAggregatorspring-doc.cn

@Bean
public IntegrationFlow fileSplitterAggregatorFlow(TaskExecutor taskExecutor) {
    return f -> f
            .split(Files.splitter()
                    .markers()
                    .firstLineAsHeader("firstLine"))
            .channel(c -> c.executor(taskExecutor))
            .filter(payload -> !(payload instanceof FileSplitter.FileMarker),
                    e -> e.discardChannel("aggregatorChannel"))
            .<String, String>transform(String::toUpperCase)
            .channel("aggregatorChannel")
            .aggregate(new FileAggregator())
            .channel(c -> c.queue("resultChannel"));
}
@Bean
fun fileSplitterAggregatorFlow(taskExecutor: TaskExecutor?) =
    integrationFlow {
        split(Files.splitter().markers().firstLineAsHeader("firstLine"))
        channel { executor(taskExecutor) }
        filter<Any>({ it !is FileMarker }) { discardChannel("aggregatorChannel") }
        transform(String::toUpperCase)
        channel("aggregatorChannel")
        aggregate(FileAggregator())
        channel { queue("resultChannel") }
    }
@serviceActivator(inputChannel="toAggregateFile")
@Bean
public AggregatorFactoryBean fileAggregator() {
    AggregatorFactoryBean aggregator = new AggregatorFactoryBean();
    aggregator.setProcessorBean(new FileAggregator());
    aggregator.setOutputChannel(outputChannel);
    return aggregator;
}
<int:chain input-channel="input" output-channel="output">
    <int-file:splitter markers="true"/>
    <int:aggregator>
        <bean class="org.springframework.integration.file.aggregator.FileAggregator"/>
    </int:aggregator>
</int:chain>

如果 的默认行为不满足目标逻辑,则建议使用单个策略配置聚合器终端节点。 有关更多信息,请参阅 JavaDocs。FileAggregatorFileAggregatorspring-doc.cn