1

我想使用骆驼构建从文件夹到文件夹应用程序的简单副本:

  <camelContext id="camel" xmlns="http://camel.apache.org/schema/spring">
  <route>
    <from uri="file:src/data?noop=true"/>
    <to uri="file:src/data/new"/>
  </route>
  </camelContext>

我想每 5 秒添加一次石英来复制文件。

我发现了这样的事情:

<bean id="quartz" class="org.apache.camel.component.quartz.QuartzComponent">
    <property name="startDelayedSeconds" value="5"/>
</bean>

但我不知道如何在我的示例中使用它。

请帮忙

4

1 回答 1

2

您不需要使用石英。只需更改您的来自:file:src/data?noop=true&consumer.delay=5000

于 2012-03-06T06:18:07.750 回答