我想使用骆驼构建从文件夹到文件夹应用程序的简单副本:
<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>
但我不知道如何在我的示例中使用它。
请帮忙