removed extra slash and unused duplicate config file

This commit is contained in:
Mark Fisher
2010-04-14 02:02:36 +00:00
parent 2229ef8bdd
commit 8538c8f4cb
2 changed files with 2 additions and 46 deletions

View File

@@ -24,12 +24,12 @@
<outbound-gateway id="copier"
request-channel="copyInput"
reply-channel="output"
directory="${java.io.tmpdir}/anyDir" />
directory="${java.io.tmpdir}anyDir" />
<outbound-gateway id="mover"
request-channel="moveInput"
reply-channel="output"
directory="${java.io.tmpdir}/anyDir"
directory="${java.io.tmpdir}anyDir"
delete-source-files="true"/>
<!--suppress SpringModelInspection -->

View File

@@ -1,44 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<beans:beans xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://www.springframework.org/schema/integration/file"
xmlns:si="http://www.springframework.org/schema/integration"
xmlns:beans="http://www.springframework.org/schema/beans"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context.xsd
http://www.springframework.org/schema/integration
http://www.springframework.org/schema/integration/spring-integration.xsd
http://www.springframework.org/schema/integration/file
http://www.springframework.org/schema/integration/file/spring-integration-file.xsd">
<si:channel id="copyInput" />
<si:channel id="moveInput" />
<si:channel id="output">
<si:queue capacity="1" />
</si:channel>
<outbound-gateway id="copier"
request-channel="copyInput"
reply-channel="output"
directory="${java.io.tmpdir}/anyDir" />
<outbound-gateway id="mover"
request-channel="moveInput"
reply-channel="output"
directory="${java.io.tmpdir}/anyDir"
delete-source-files="true"/>
<outbound-gateway id="ordered"
request-channel="someChannel"
reply-channel="output"
directory="${java.io.tmpdir}/anyDir"
auto-startup="false"
order="777"/>
<context:property-placeholder />
</beans:beans>