如何设置骆驼石英火现在选项

时间:2017-05-17 21:55:38

标签: apache-camel

我需要在camel quatrz中设置firenow选项,因此进程将在部署时立即启动,我的进程在晚上10点到晚上8.55之间每15分钟运行一次,请参阅下面的配置时间表。

quartz2://processQuartz?cron=0+0/15+22-20+*+*+?

请建议如何立即开始第一次运行,而不是每15分钟等待一次

1 个答案:

答案 0 :(得分:0)

尝试使用startDelayedSeconds属性。

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