我是Spring批量集成的新手。我需要将文件从一个本地目录移动到另一个本地目录。我尝试使用入站通道和输出绑定通道。我无法移动它。
<file:inbound-channel-adapter channel="incomingfiles"
directory="file:${java.io.tmpdir}/spring-integration-samples/input"
filename-pattern="*.txt">
<file:outbound-channel-adapter channel="outgoingfiles"
directory="file:${java.io.tmpdir}/spring-integration-samples/output">
我正在使用正确的spring命名空间处理程序,但我无法加载namespacehandler [file]。我也添加了弹簧集成罐。不是mavenproject。
请帮助我。或者我们可以使用批处理而不是弹簧集成来移动文件吗?如果是的话,你能告诉我怎么做吗?