我是 Spring 集成的新手。我有以下代码。我已将文本文件放在系统中的一个文件夹中,并且已配置入站通道适配器,如下所示:
<int-file:inbound-channel-adapter channel="filesInChannel"
directory="file:${java.io.tmpdir}/input" auto-create-directory="true" >
<int:poller id="poller" fixed-delay="1000" />
</int-file:inbound-channel-adapter>
<int:channel id="filesInChannel"> </int:channel>
我的问题是来自频道(filesInChannel
)我怎样才能知道文件名,包括它的绝对路径?
例如:我的文件位于C:\someFolder\some.txt
从频道我应该得到上面的路径。