我需要在camel quatrz中设置firenow选项,因此进程将在部署时立即启动,我的进程在晚上10点到晚上8.55之间每15分钟运行一次,请参阅下面的配置时间表。
quartz2://processQuartz?cron=0+0/15+22-20+*+*+?
请建议如何立即开始第一次运行,而不是每15分钟等待一次
答案 0 :(得分:0)
尝试使用startDelayedSeconds属性。
<bean id="quartz" class="org.apache.camel.component.quartz.QuartzComponent">
<property name="startDelayedSeconds" value="0"/>
</bean>