具有弹簧集成流的多过滤器表达式



我正在使用弹簧集成流程,我知道如何添加过滤器表达式

IntegrationFlows.from(Sftp.inboundAdapter(inboundSftp)
            .localDirectory(this.getlocalDirectory(config.getId()))
            .deleteRemoteFiles(true)
            .filterExpression(config.getFilterExpression())
            .autoCreateLocalDirectory(true)
            .remoteDirectory(config.getInboundDirectory()), e -> e.poller(Pollers.cron(config.getCron()).errorChannel(MessageHeaders.ERROR_CHANNEL).errorHandler((ex) -> {
           // action on exceptions are here
        }))).publishSubscribeChannel(s -> s
            .subscribe(f -> f
                .handle(Sftp.outboundAdapter(outboundSftp)
                        .useTemporaryFileName(false)
                        .autoCreateDirectory(true)
                        .remoteDirectory(config.getOutboundDirectory()), c -> c.advice(startup.deleteFileAdvice())
                ))
            .subscribe(f -> f
                .handle(m -> {
                    // all my custom logging logic is here
                })
            ))
            .get();

我想了解的。

  • 例如,我如何给出多个过滤器表达式,我想从服务器获取.csv和.xml文件。
  • 我如何忽略单个文件类型,例如,我只想忽略具有.txt类型的文件并获取 rest 文件。
你可以

改用.regexFilter

".*\.(xml|csv)"

.filterExpression("name.endsWith('.csv') OR name.endsWith('xml')")

.filterExpression("!name.endsWith('.txt')")

相关内容

  • 没有找到相关文章

最新更新