Apache camel 如何设置camel quartz fire now选项

Apache camel 如何设置camel quartz fire now选项,apache-camel,Apache Camel,我需要在camel quatrz中设置firenow选项,以便在部署时立即启动进程,我的进程在晚上10点到8点55分之间每隔15分钟运行一次。请参阅下面的配置计划 quartz2://processQuartz?cron=0+0/15+22-20+*+*+? 请建议如何立即开始第一次运行,而不是每15分钟等待一次尝试使用startDelayedSeconds属性 <bean id="quartz" class="org.apache.camel.component.quartz.Quar

我需要在camel quatrz中设置firenow选项,以便在部署时立即启动进程,我的进程在晚上10点到8点55分之间每隔15分钟运行一次。请参阅下面的配置计划

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

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

尝试使用startDelayedSeconds属性

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