I am using spring + quartz for schedule a job which need run every 22 mins.and configured as below. but the job start the hour point(Sharp) too. (running time like : 12:00, 12:22, 12:44, 13:00(why?), 13:22,13:44. even configured to 0 */22 * * * ? or 0 0/22 * * * ?, it's too.
<bean id="cronTrigger_LogBackupManager" class="org.springframework.scheduling.quartz.CronTriggerBean">
<property name="jobDetail" ref="jobDetail_LogBackupManager" />
<property name="cronExpression">
<value>0 /22 * * * ?</value> <!-- each 22 min -->
</property>
</bean>