我正在使用 spring 集成轮询器从 sftp 服务器下载文件
<int-sftp:inbound-channel-adapter channel="myFileDownloadChannel"
session-factory="mySftpSessionFactory"
remote-directory="#{remote}"
filter = "modifiedFileListFilter"
local-directory="#{local}"
auto-create-local-directory="true">
<integration:poller cron="10 * * * * *" default="true"/>
</int-sftp:inbound-channel-adapter>
<integration:service-activator input-channel="myFileDownloadChannel"
ref="errorTransformer"
output-channel="endChannel"/>
我在 6 台服务器上运行此代码。
- 如果 6 个服务器每 10 分钟轮询一次,它会挂起 sftp 服务器吗?
- 每次触发轮询器时它都会建立新的连接吗?
请指教。