对于最新的稳定版本,请使用 Spring Integration 6.3.1Spring中文文档

对于最新的稳定版本,请使用 Spring Integration 6.3.1Spring中文文档

SFTP 入站通道适配器是一个特殊的侦听器,它连接到服务器并侦听远程目录事件(例如正在创建的新文件),此时它会启动文件传输。 以下示例演示如何配置 SFTP 入站通道适配器:Spring中文文档

<int-sftp:inbound-channel-adapter id="sftpAdapterAutoCreate"
              session-factory="sftpSessionFactory"
            channel="requestChannel"
            filename-pattern="*.txt"
            remote-directory="/foo/bar"
            preserve-timestamp="true"
            local-directory="file:target/foo"
            auto-create-local-directory="true"
            local-filename-generator-expression="#this.toUpperCase() + '.a'"
            scanner="myDirScanner"
            local-filter="myFilter"
            temporary-file-suffix=".writing"
            max-fetch-size="-1"
            delete-remote-files="false">
        <int:poller fixed-rate="1000"/>
</int-sftp:inbound-channel-adapter>

前面的配置示例演示如何为各种属性提供值,包括:Spring中文文档

默认情况下,传输的文件与原始文件同名。 如果要重写此行为,可以设置该属性,该属性允许您提供 SpEL 表达式来生成本地文件的名称。 与出站网关和适配器不同,其中 SpEL 评估上下文的根对象是 ,此入站适配器在评估时还没有消息,因为这是它最终生成的消息,传输的文件作为其有效负载。 因此,SpEL 评估上下文的根对象是远程文件的原始名称 (a )。local-filename-generator-expressionMessageStringSpring中文文档

入站通道适配器首先将文件检索到本地目录,然后根据轮询器配置发出每个文件。 从版本 5.0 开始,当需要新文件检索时,可以限制从 SFTP 服务器提取的文件数。 当目标文件很大或在具有持久性文件列表筛选器的群集系统中运行时,这可能很有用,本节稍后将讨论。 用于此目的。 负值(默认值)表示没有限制,并且将检索所有匹配的文件。 有关详细信息,请参阅入站通道适配器:控制远程文件提取。 从 5.0 版开始,您还可以通过设置属性来提供自定义实现。max-fetch-sizeDirectoryScannerinbound-channel-adapterscannerSpring中文文档

从 Spring Integration 3.0 开始,您可以指定属性(默认为 )。 当 时,本地文件的修改时间戳设置为从服务器检索的值。 否则,它将设置为当前时间。preserve-timestampfalsetrueSpring中文文档

从版本 4.2 开始,您可以指定 instead of ,这样可以动态确定每个轮询的目录,例如 .remote-directory-expressionremote-directoryremote-directory-expression="@myBean.determineRemoteDir()"Spring中文文档

有时,基于通过属性指定的简单模式进行文件筛选可能还不够。 如果是这种情况,可以使用该属性指定正则表达式(例如,)。 如果需要完全控制,可以使用该属性提供对 的自定义实现的引用,该实现是用于筛选文件列表的策略接口。 此筛选器确定检索哪些远程文件。 还可以使用 .filename-patternfilename-regexfilename-regex=".*\.test$"filterorg.springframework.integration.file.filters.FileListFilterAcceptOnceFileListFilterCompositeFileListFilterSpring中文文档

将其状态存储在内存中。 如果您希望状态在系统重新启动后继续存在,请考虑改用 。 此筛选器将接受的文件名存储在策略的实例中(请参阅元数据存储)。 此筛选器与文件名和远程修改时间匹配。AcceptOnceFileListFilterSftpPersistentAcceptOnceFileListFilterMetadataStoreSpring中文文档

从版本 4.0 开始,此筛选器需要 . 当与共享数据存储一起使用时(例如,与 一起使用),这允许在多个应用程序或服务器实例之间共享筛选器密钥。ConcurrentMetadataStoreRedisRedisMetadataStoreSpring中文文档

从版本 5.0 开始,默认情况下将 with an in-memory 应用于 . 此过滤器还与 XML 配置中的 or 选项一起应用,以及 Java DSL 中的 through。 您可以使用 (或 ) 来处理任何其他用例。SftpPersistentAcceptOnceFileListFilterSimpleMetadataStoreSftpInboundFileSynchronizerregexpatternSftpInboundChannelAdapterSpecCompositeFileListFilterChainFileListFilterSpring中文文档

上面的讨论是指在检索文件之前过滤文件。 检索文件后,将对文件系统上的文件应用额外的筛选器。 默认情况下,这是一个“AcceptOnceFileListFilter”,如本节所述,它保留内存中的状态,并且不考虑文件的修改时间。 除非应用程序在处理后删除文件,否则适配器默认会在应用程序重新启动后重新处理磁盘上的文件。Spring中文文档

此外,如果将 “使用”配置为“,并且远程文件时间戳会更改(导致重新提取),则默认的本地筛选器不允许处理此新文件。filterSftpPersistentAcceptOnceFileListFilterSpring中文文档

有关此筛选器及其使用方式的详细信息,请参阅远程持久性文件列表筛选器Spring中文文档

您可以使用该属性来配置本地文件系统筛选器的行为。 从版本 4.3.8 开始,默认配置 a。 此筛选器将接受的文件名和修改的时间戳存储在策略的实例中(请参阅元数据存储),并检测对本地文件修改时间的更改。 默认值是将状态存储在内存中的状态。local-filterFileSystemPersistentAcceptOnceFileListFilterMetadataStoreMetadataStoreSimpleMetadataStoreSpring中文文档

从版本 4.1.5 开始,这些过滤器具有一个名为 的新属性,这会导致它们刷新 每次更新时的元数据存储(如果存储实现)。flushOnUpdateFlushableSpring中文文档

此外,如果使用分布式(如 Redis 元数据存储),则可以拥有同一适配器或应用程序的多个实例,并确保只有一个实例处理文件。MetadataStore

实际的本地筛选器是包含提供的筛选器和模式筛选器,该筛选器阻止处理正在下载的文件(基于 )。 使用此后缀下载文件(默认为 ),传输完成后,文件将重命名为最终名称,使其对过滤器“可见”。CompositeFileListFiltertemporary-file-suffix.writingSpring中文文档

有关这些属性的更多详细信息,请参阅架构Spring中文文档

SFTP 入站通道适配器是轮询使用者。 因此,必须配置轮询器(全局默认值或局部元素)。 将文件传输到本地目录后,将生成一条有效负载类型的消息,并将其发送到由属性标识的通道。java.io.FilechannelSpring中文文档

从版本 6.2 开始,您可以使用 根据上次修改的策略过滤 SFTP 文件。 可以使用属性配置此筛选器,以便筛选器仅传递早于此值的文件。 期限默认为 60 秒,但您应该选择一个足够大的期限,以避免过早拿起文件(例如,由于网络故障)。 查看其 Javadoc 以获取更多信息。SftpLastModifiedFileListFilterageSpring中文文档

此外,如果使用分布式(如 Redis 元数据存储),则可以拥有同一适配器或应用程序的多个实例,并确保只有一个实例处理文件。MetadataStore

有关文件筛选和大文件的更多信息

有时,刚刚出现在受监视(远程)目录中的文件并不完整。 通常,此类文件是使用某些临时扩展名(例如在名为 的 )上写入的,然后在写入过程完成后重命名。 在大多数情况下,开发人员只对完整的文件感兴趣,并且只想过滤这些文件。 若要处理这些方案,可以使用 、 和 属性提供的筛选支持。 如果需要自定义筛选器实现,可以通过设置属性在适配器中包含引用。 以下示例演示如何执行此操作:.writingsomething.txt.writingfilename-patternfilename-regexfilterfilterSpring中文文档

<int-sftp:inbound-channel-adapter id="sftpInbondAdapter"
            channel="receiveChannel"
            session-factory="sftpSessionFactory"
            filter="customFilter"
            local-directory="file:/local-test-dir"
            remote-directory="/remote-test-dir">
        <int:poller fixed-rate="1000" max-messages-per-poll="10" task-executor="executor"/>
</int-sftp:inbound-channel-adapter>

<bean id="customFilter" class="org.foo.CustomFilter"/>

从故障中恢复

您应该了解适配器的体系结构。 文件同步器获取文件,并为每个同步文件发出一条消息。 如前所述,涉及两个过滤器。 属性(和模式)引用远程 (SFTP) 文件列表,以避免获取已获取的文件。 使用 来确定哪些文件将作为消息发送。FileReadingMessageSourcefilterFileReadingMessageSourcelocal-filterSpring中文文档

同步器列出远程文件并查阅其筛选器。 然后传输文件。 如果在文件传输过程中发生 IO 错误,则将删除已添加到筛选器的任何文件,以便它们有资格在下一次轮询时重新提取。 仅当筛选器实现(例如 )。ReversibleFileListFilterAcceptOnceFileListFilterSpring中文文档

如果在同步文件后,在处理文件的下游流中发生错误,则不会自动回滚筛选器,因此默认情况下不会重新处理失败的文件。Spring中文文档

如果希望在失败后重新处理此类文件,可以使用类似于以下内容的配置来帮助从筛选器中删除失败的文件:Spring中文文档

<int-sftp:inbound-channel-adapter id="sftpAdapter"
        session-factory="sftpSessionFactory"
        channel="requestChannel"
        remote-directory-expression="'/sftpSource'"
        local-directory="file:myLocalDir"
        auto-create-local-directory="true"
        filename-pattern="*.txt">
    <int:poller fixed-rate="1000">
        <int:transactional synchronization-factory="syncFactory" />
    </int:poller>
</int-sftp:inbound-channel-adapter>

<bean id="acceptOnceFilter"
    class="org.springframework.integration.file.filters.AcceptOnceFileListFilter" />

<int:transaction-synchronization-factory id="syncFactory">
    <int:after-rollback expression="payload.delete()" />
</int:transaction-synchronization-factory>

<bean id="transactionManager"
    class="org.springframework.integration.transaction.PseudoTransactionManager" />

上述配置适用于任何 .ResettableFileListFilterSpring中文文档

从 V5.0 开始,入站通道适配器可以根据生成的本地文件名在本地构建子目录。 这也可以是远程子路径。 为了能够根据层次结构支持以递归方式读取本地目录进行修改,您现在可以根据该算法提供带有新目录的内部目录。 有关更多信息,请参见 AbstractInboundFileSynchronizingMessageSource.setScanner()。 此外,您现在可以将 -based by using 选项切换到。 它还配置为所有实例,以对本地目录中的任何修改做出反应。 前面显示的重新处理示例基于 的内置功能,该功能在从本地目录中删除 () 文件时使用。 有关详细信息,请参阅 WatchServiceDirectoryScannerFileReadingMessageSourceRecursiveDirectoryScannerFiles.walk()AbstractInboundFileSynchronizingMessageSourceWatchServiceDirectoryScannersetUseWatchService()WatchEventTypeFileReadingMessageSource.WatchServiceDirectoryScannerResettableFileListFilter.remove()StandardWatchEventKinds.ENTRY_DELETESpring中文文档

使用 Java 配置进行配置

以下 Spring Boot 应用程序显示了如何使用 Java 配置入站适配器的示例:Spring中文文档

@SpringBootApplication
public class SftpJavaApplication {

    public static void main(String[] args) {
        new SpringApplicationBuilder(SftpJavaApplication.class)
            .web(false)
            .run(args);
    }

    @Bean
    public SessionFactory<SftpClient.DirEntry> sftpSessionFactory() {
        DefaultSftpSessionFactory factory = new DefaultSftpSessionFactory(true);
        factory.setHost("localhost");
        factory.setPort(port);
        factory.setUser("foo");
        factory.setPassword("foo");
        factory.setAllowUnknownKeys(true);
        factory.setTestSession(true);
        return new CachingSessionFactory<>(factory);
    }

    @Bean
    public SftpInboundFileSynchronizer sftpInboundFileSynchronizer() {
        SftpInboundFileSynchronizer fileSynchronizer = new SftpInboundFileSynchronizer(sftpSessionFactory());
        fileSynchronizer.setDeleteRemoteFiles(false);
        fileSynchronizer.setRemoteDirectory("foo");
        fileSynchronizer.setFilter(new SftpSimplePatternFileListFilter("*.xml"));
        return fileSynchronizer;
    }

    @Bean
    @InboundChannelAdapter(channel = "sftpChannel", poller = @Poller(fixedDelay = "5000"))
    public MessageSource<File> sftpMessageSource() {
        SftpInboundFileSynchronizingMessageSource source =
                new SftpInboundFileSynchronizingMessageSource(sftpInboundFileSynchronizer());
        source.setLocalDirectory(new File("sftp-inbound"));
        source.setAutoCreateLocalDirectory(true);
        source.setLocalFilter(new AcceptOnceFileListFilter<File>());
        source.setMaxFetchSize(1);
        return source;
    }

    @Bean
    @ServiceActivator(inputChannel = "sftpChannel")
    public MessageHandler handler() {
        return new MessageHandler() {

            @Override
            public void handleMessage(Message<?> message) throws MessagingException {
                System.out.println(message.getPayload());
            }

        };
    }

}

使用 Java DSL 进行配置

以下 Spring Boot 应用程序显示了如何使用 Java DSL 配置入站适配器的示例:Spring中文文档

@SpringBootApplication
public class SftpJavaApplication {

    public static void main(String[] args) {
        new SpringApplicationBuilder(SftpJavaApplication.class)
            .web(false)
            .run(args);
    }

    @Bean
    public IntegrationFlow sftpInboundFlow() {
        return IntegrationFlow
            .from(Sftp.inboundAdapter(this.sftpSessionFactory)
                    .preserveTimestamp(true)
                    .remoteDirectory("foo")
                    .regexFilter(".*\\.txt$")
                    .localFilenameExpression("#this.toUpperCase() + '.a'")
                    .localDirectory(new File("sftp-inbound")),
                 e -> e.id("sftpInboundAdapter")
                    .autoStartup(true)
                    .poller(Pollers.fixedDelay(5000)))
            .handle(m -> System.out.println(m.getPayload()))
            .get();
    }
}

处理不完整的数据

提供用于筛选远程系统上没有相应标记文件的远程文件。 有关配置信息,请参阅 JavadocSftpSystemMarkerFilePresentFileListFilterSpring中文文档