我需要同时轮询两个文件并比较内容,我将如何操作以及使用什么呢?

时间:2019-01-15 14:33:06

标签: spring-boot spring-integration-sftp

我正忙于使用SFTP入站通道适配器的项目。我需要先轮询两个文件,然后在继续其他功能之前比较两个文件的内容。

使用spring-integration和integration-context.xml来做到这一点的最佳实践是什么?

我尝试将max-messages-per-poll与任务执行器一起使用,然后使用复合文件过滤器来检索很多文件列表中的这两个特定文件。但是从这里我不知道下一步该怎么做。

<int:poller cron="${cron}" error-channel="PollerErrorChannel" 
            max-messages-per-poll="2"  task-executor="executor" />

<task:executor id="executor" pool-size="2" />

0 个答案:

没有答案