0

您将如何使用 spring 集成将文件从一个地方复制到另一个地方。就我而言,我想将战争之外的文件复制到战争内部。这是我正在考虑的代码片段:

<?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" />

但可耻的是它不起作用。有人知道怎么做吗?

提前致谢 .....

4

2 回答 2

1

我认为这个问题与目标目录有关。您正在使用“类路径:”前缀,它不能用于写入文件,只能用于读取。

请让我们知道您要通过复制此路径的文件来实现什么,我们将尝试提出另一种方法来做同样的事情。

于 2011-02-04T14:34:35.527 回答
0

file:inbound-file-adapter 上的目录应该可以解析为单个目录(java.io.File 实例)。不支持使用一个适配器从多个目录中读取,最后我检查了...

我会尝试将入站目录和出站目录更改为正常/众所周知的目录,例如 /tmp - /tmp/a 和 /tmp/b 中的两个目录。如果可行,那么您就知道您的配置是正常的,只是目录的值很不稳定。如果您使用 Maven 和 STS / Eclipse 或 IntelliJ,则很容易调出入站通道适配器实现类并调试(FileReadingMessageSource,IIRC)它正在做什么。

于 2011-02-08T00:11:29.223 回答