我正忙于使用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" />