我正在使用 spring 集成的入站通道适配器。我想在两个不同的目录下轮询 - 每个文件类别一个 - 并解析位于那里的文件。我使用的代码是:
<int:channel id="inputChannel"/>
<file:inbound-channel-adapter id="fileInOne"
directory="myDirOne"
auto-create-directory="true"
channel = "inputChannel">
<int:poller id="one" cron="1/10 * * * * *"/>
</file:inbound-channel-adapter>
<file:inbound-channel-adapter id="fileInTwo"
directory="myDirTwo"
auto-create-directory="true"
channel = "inputChannel">
<int:poller id="two" cron="1/10 * * * * *"/>
</file:inbound-channel-adapter>
两个入站通道适配器使用相同的通道。所以我想知道文件是从哪个入站通道适配器加载的。