Ways to deal with Daylight Savings time with Quartz Cron Trigger
问题 I have a quartz cron trigger that looks like so: <bean id="batchProcessCronTrigger" class="org.springframework.scheduling.quartz.CronTriggerBean"> <property name="jobDetail" ref="batchProcessJobDetail" /> <property name="cronExpression" value="0 30 2 * * ?" /> </bean> How should I solve this, if I have several configurations that happen within the 2-3am period? Is there an accepted best practice? Relevant link: http://www.quartz-scheduler.org/docs/faq.html#FAQ-daylightSavings Basically it