如何通过ftp入站通道适配器轮询本地ftp目录?

时间:2015-12-02 16:18:34

标签: java spring ftp spring-integration

我是春季融合的新手。所以,如果我问一些普通的东西,请原谅我。我有一个简单的用例。我已经配置了ftp入站通道适配器,如下所示。使用它我能够在本地目录中提取远程检查文件。 i.e.D:/出站。现在我想轮询本地目录,即ie:/ Outbound以添加更多业务逻辑。即,根据检查文件状态从远程下载原始文件,并将相关检查文件移动到其他目录位置。我该怎么办?任何示例快速代码或参考指南/链接将不胜感激。

    <?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xmlns:int="http://www.springframework.org/schema/integration"
       xmlns:int-ftp="http://www.springframework.org/schema/integration/ftp"
       xmlns:context="http://www.springframework.org/schema/context"
       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
        http://www.springframework.org/schema/integration http://www.springframework.org/schema/integration/spring-integration.xsd
        http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd
        http://www.springframework.org/schema/integration/ftp http://www.springframework.org/schema/integration/ftp/spring-integration-ftp.xsd">

  <context:property-placeholder location="/ftp/ftp.properties"/>
  <context:component-scan base-package="com.sandbox.ftp"/>

  <!-- FTP inbound channel adapter for reading the input check files -->
  <int-ftp:inbound-channel-adapter id="ftpInbound"
                                   channel="ftpInboudChannel"
                                   session-factory="ftpClientFactory"
                                   auto-create-local-directory="true"
                                   local-directory="D:/outBound"
                                   remote-directory="."
                                   filename-regex=".*\.chk$">
            <int:poller fixed-rate="5000" />
  </int-ftp:inbound-channel-adapter>

  <int:channel id="ftpInboudChannel"/>

  <!--Service Activator which will intiates the download of original source file  -->
  <int:service-activator input-channel="ftpInboudChannel" ref="myPojo" method="processFile" />
  <bean id="myPojo" class="com.sandbox.ftp.CheckFileProcessor" />

  <!-- FTP inbound channel adapter for downloading the original remote files -->
  <int-ftp:inbound-channel-adapter id="ftpInboundDownload"
                                   channel="ftpInboudDownloadChannel"
                                   session-factory="ftpClientFactory"
                                   auto-create-local-directory="true"
                                   local-directory="D:/outBound/original"
                                   remote-directory="."
                                   filename-regex=".*\.txt$">
            <int:poller fixed-rate="5000"/>
  </int-ftp:inbound-channel-adapter>

  <int:channel id="ftpInboudDownloadChannel"/>


</beans>

现在根据Gary的评论,我使用了服务激活器并能够下载原始的源文件。 *。文本。现在我想在下载原始源文件后将关联的检查文件移动到同一文件夹。即* .chk到D:/ outBound / original。有什么想法吗?

1 个答案:

答案 0 :(得分:1)

所有这一切都是将文件转储到队列通道中 - 我假设您从示例应用程序中获取了该文件。

请参阅spring integration reference

一个简单的应用可能会这样做(从频道中删除<queue/>)...

<int:channel id="ftpInboudChannel"/>

<int:service-activator input-channel="ftpInboudChannel"
    ref="myPojo" method="processFile" />

<bean id="myPojo" class="foo.MyPojo" />

public class MyPojo {

    public void processFile(File fileToProcess) {
        ...
    }
}

修改

我不完全确定您的用例是什么,但听起来您只想在.txt文件存在时获取.chk文件。

入站通道适配器并不适合它 - 它只是将本地目录同步到远程目录,听起来你需要这样的东西,使用带有出站通道适配器的GET命令......

<int:channel id="ftpInboudChannel"/>

<int:transformer input-channel="ftpInboudChannel" output-channel="ftpGet"
    expression="payload.name.replace('chk$', 'txt')" />

<int:ftp-outbound-gateway request-channel="ftpGet" command="get"
     ...
    replyChannel="ftpGot" />

<int:service-activator input-channel="ftpGot" ... />

换句话说,按需获取文件而不是轮询它。

您还可以使用网关列出(LS)文件并获取您感兴趣的文件。