1

我正在使用来自https://github.com/spring-projects/spring-integration-aws的示例配置作为入站通道适配器,但我有一个存储桶,其中包含内部带有 CSV 的子目录。

有没有办法在本地复制桶树结构?我只设法从子目录中复制文件,但它们最终是在我使用 messageSource.setLocalDirectory(LOCAL_FOLDER); 设置的目录的根目录中创建的;

或者有没有办法识别文件来自哪个桶子目录?

@Bean
@InboundChannelAdapter(value = "s3FilesChannel", poller = @Poller(fixedDelay = "100"))
public S3InboundFileSynchronizingMessageSource s3InboundFileSynchronizingMessageSource() {
    S3InboundFileSynchronizingMessageSource messageSource =
            new S3InboundFileSynchronizingMessageSource(s3InboundFileSynchronizer());
    messageSource.setAutoCreateLocalDirectory(true);
    messageSource.setLocalDirectory(LOCAL_FOLDER);
    messageSource.setLocalFilter(new AcceptOnceFileListFilter<File>());
    return messageSource;
}
4

1 回答 1

0

你需要使用

/**
 * Switch the local {@link FileReadingMessageSource} to use a custom
 * {@link DirectoryScanner}.
 * @param scanner the {@link DirectoryScanner} to use.
 * @since 5.0
 */
public void setScanner(DirectoryScanner scanner) {

并指定一个RecursiveDirectoryScannerhttps ://docs.spring.io/spring-integration/docs/current/reference/html/ftp.html#_recovering_from_failures :

从 5.0 版本开始,Inbound Channel Adapter 可以根据生成的本地文件名在本地构建子目录。

您需要从存储桶中提取数据,然后S3InboundFileSynchronizingMessageSource将恢复本地目录中的结构。

注意:您当然需要使用最新的spring-integration-aws-2.0.0.RELEASE.

于 2018-10-05T15:17:41.470 回答