FTP Spring与入站流媒体适配器的集成

时间:2016-08-01 18:42:15

标签: ftp spring-integration-sftp

我正在使用与ftp的spring-integration。当我使用int-ftp:inbound-channel-adapter时,它工作正常,但int-ftp:inbound-streaming-channel-adapter会产生以下错误:

cvc-complex-type.2.4.c: The matching wildcard is strict, but no declaration can be found for element 'int-ftp:inbound-streaming-channel-adapter

我能错过什么?

我的代码的相关部分是

<int-ftp:inbound-streaming-channel-adapter id="ftpInbound"
         channel="ftpChannel"
         session-factory="ftpClientFactory"
         filename-pattern="*.txt"
         filename-regex=".*\.txt"
         filter="customFilter"
         remote-file-separator="/"
         comparator="comparator"
         remote-directory-expression="'/OUT/SDI402_CARATT_JD'">
     <int:poller fixed-rate="1000" />
 </int-ftp:inbound-streaming-channel-adapter>

1 个答案:

答案 0 :(得分:0)

在依赖关系中使用spring集成4.3.1.RELEASE。在我的案例中,这解决了完全相同的问题。