我在SFTP站適配器如何根據文件名中的SFTP適配器Spring集成
<int-sftp:inbound-channel-adapter id="sftpInbondAdapter"
channel="sftpInboundChannel"
session-factory="sftpSessionFactory"
filename-pattern="*.DONE"
remote-directory="/C:/Users/Desktop"
local-directory="D:\Documents1"
auto-create-local-directory="false"
local-filename-generator-expression="#this"
delete-remote-files="false" >
<int:poller fixed-rate="1000" task-executor="executor"/>
</int-sftp:inbound-channel-adapter>
以下配置爲傳入文件的動態本地目錄我要爲傳入文件取決於動態的本地目錄文件名。像test123.Done是文件名,那麼我必須將該文件放在我的本地目錄D:\ Documents1 \ test123 \ test123.Done中。 那麼如何在我的sftp中爲入站適配器生成local-directory =「」的動態路徑?
分享你的代碼你試過的東西 –