【发布时间】:2015-11-08 05:04:24
【问题描述】:
我正在使用 spring 集成进行 ftp 集成。以下是我的配置
<int:channel id="ftpChannel"/>
<int-ftp:outbound-channel-adapter id="ftpOutbound"
channel="ftpChannel"
remote-directory="/"
session-factory="ftpClientFactory">
<int-ftp:request-handler-advice-chain>
<int:retry-advice />
</int-ftp:request-handler-advice-chain>
</int-ftp:outbound-channel-adapter>
如何将其转换为基于 java 的 spring 配置?
【问题讨论】:
标签: java spring spring-mvc spring-integration