春の統合を使用して、ある場所から別の場所にファイルをどのようにコピーしますか。私の場合、戦争外のファイルを戦争内にコピーしたいと考えています。ここに私が考えているコードスニペットがあります:
<?xml version="1.0" encoding="UTF-8"?>
<beans:beans xmlns:beans="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://www.springframework.org/schema/integration"
xmlns:file="http://www.springframework.org/schema/integration/file"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
http://www.springframework.org/schema/integration http://www.springframework.org/schema/integration/spring-integration-1.0.xsd
http://www.springframework.org/schema/integration/file http://www.springframework.org/schema/integration/file/spring-integration-file-1.0.xsd
http://www.springframework.org/schema/integration/mail http://www.springframework.org/schema/integration/mail/spring-integration-mail-1.0.xsd
">
<poller max-messages-per-poll="1" id="defaultPoller" default="true">
<interval-trigger interval="1000"/>
</poller>
<file:inbound-channel-adapter id="filesIn"
filename-pattern="ha-jdbc-cluster1.xml"
directory="file:/etc/****/" />
<file:outbound-channel-adapter id="filesOut" directory="classpath:/WEB-INF/classes" />
しかし、残念ながらうまくいきません。誰もそれを行う方法を知っていますか?
前もって感謝します .....