INTSAMPLES-117 Remove cache-sessions - FTP Sample

Compatibility with SI 3.0; also bump to 3.0.0.M3.
This commit is contained in:
Gary Russell
2013-09-05 11:11:09 -04:00
parent 0f6fb885c2
commit ed736aa499
4 changed files with 6 additions and 6 deletions

View File

@@ -18,7 +18,7 @@
<property name="password" value="${password}"/>
</bean>
<int-ftp:inbound-channel-adapter id="ftpInbound" cache-sessions="false"
<int-ftp:inbound-channel-adapter id="ftpInbound"
channel="ftpChannel"
session-factory="ftpClientFactory"
filename-pattern="*.txt"

View File

@@ -20,7 +20,7 @@
<int:channel id="ftpChannel"/>
<int-ftp:outbound-channel-adapter id="ftpOutbound" cache-sessions="false"
<int-ftp:outbound-channel-adapter id="ftpOutbound"
channel="ftpChannel"
remote-directory="/"
session-factory="ftpClientFactory" />

View File

@@ -22,7 +22,7 @@
<property name="password" value="${password}"/>
</bean>
<int-ftp:outbound-gateway id="gatewayLS" cache-sessions="false"
<int-ftp:outbound-gateway id="gatewayLS"
session-factory="ftpSessionFactory"
request-channel="inbound"
command="ls"
@@ -40,7 +40,7 @@
<int:splitter id="splitter" input-channel="toSplitter" output-channel="toGet"/>
<int-ftp:outbound-gateway id="gatewayGET" cache-sessions="false"
<int-ftp:outbound-gateway id="gatewayGET"
local-directory="#{ T(org.springframework.integration.samples.ftp.TestSuite).LOCAL_FTP_TEMP_DIR}/gatewayGET"
session-factory="ftpSessionFactory"
request-channel="toGet"
@@ -58,7 +58,7 @@
<int:logging-channel-adapter id="logger2" log-full-message="true"/>
<int-ftp:outbound-gateway id="gatewayRM"
session-factory="ftpSessionFactory" cache-sessions="false"
session-factory="ftpSessionFactory"
expression="headers['file_remoteDirectory'] + '/' + headers['file_remoteFile']"
request-channel="toRemoveChannel"
command="rm"