I want my cron job to run exactly at the below times. I am using Java, Spring, and Quartz.
6:30 Am, 9 AM, 12 PM, 2 PM
I tried below, not sure if its correct. Please let me know if this is correct:
0 30,0,0 6,9,12 * *
Here's my Spring XML snippet:
<bean id="test" class="org.springframework.scheduling.quartz.CronTriggerBean">
<property name="jobDetail">
<ref bean="testjob"/>
</property>
<property name="cronExpression">
<value>0 30,0,0 6,9,12 * * ?</value>
</property>
</bean>