Spring集成 - 如果没有文件返回则停止轮询

时间:2017-07-13 13:03:45

标签: java spring spring-integration spring-integration-sftp

我有一个轮询器,它正在轮询一个远程目录,以便跨越文件,但是如果在x次尝试之后它没有找到该文件,我想停止它。有没有一个简单的配置?

ApplicationContext.xml

        <int-sftp:inbound-channel-adapter id="sftpInboundAdaptor"
                                          session-factory="sftpSessionFactory"
                                          local-directory="${local.dir}"
                                          auto-create-local-directory="true"
                                          auto-startup="false"
                                          channel="SftpChannel"
                                          remote-directory="${remote.dir}"
                                          filename-pattern="XXXX"
                                          delete-remote-files="false"
                                          charset="UTF-8"
                                          remote-file-separator="/"
                                          local-filename-generator-expression="#this">
            <int:poller max-messages-per-poll="1" fixed-rate="30000" >
            </int:poller>
        </int-sftp:inbound-channel-adapter>



Main.class

     private static void sftpFile(String party) throws Exception {
            SourcePollingChannelAdapter adapter = (SourcePollingChannelAdapter) applicationContext.getBean("sftpInboundAdaptor");
            adapter.start();
            SftpDownloader sftpProcessor = (SftpDownloader) applicationContext.getBean("sftpDownloader");
            LOGGER.info((fileDownloaded ? "Successful" : "Failed") + " downloading file"");
        }




SftpDownloader.class

    public boolean receiveFile(String party, String fileType) throws SftpJobException {
            if (Constants.1.equals(fileType)) {
                return isFile1SftpSuccessful();
            } else if (Constants.2.equals(fileType)) {
                return isFile2SftpSuccessful(party);
            }
            return false;
        }

        private boolean isFile1SftpSuccessful() throws SftpJobException {
            return isValidFile((File) SftpChannel.receive().getPayload());
        }
            private boolean isValidFile(File received) throws SftpJobException{
            if (received.length() != 0) {
                LOGGER.info("File is: {}", received.toString());
                return true;
            } else {
                throw new SftpJobException("File size is 0, either no file exists an empty file was created. ")
            }
        }

当我查找上述文件(不存在)时,我似乎无限期地进行了民意调查,而如果文件不存在则我想抛出异常。

1 个答案:

答案 0 :(得分:0)

请参阅Smart Polling - 您可以检测到缺少消息并停止轮询。

  

4.2版引入了AbstractMessageSourceAdvice。在类的子类的通知链中的任何Advice对象仅应用于接收操作。这些类实现以下方法:

     

beforeReceive(MessageSource<?> source)

     

在MessageSource.receive()方法之前调用此方法。它使您可以在此时检查和/或重新配置源。返回false取消此轮询(类似于上面提到的PollSkipAdvice)。

     

Message<?> afterReceive(Message<?> result, MessageSource<?> source)

     

此方法在receive()方法之后调用;再次,您可以重新配置源,或者根据结果采取任何操作(如果源没有创建消息,则可以为null)。你甚至可以回复另一条消息!