开发者

Difference between setCronExpression(CronExpression) and setCronExpression(String)

开发者 https://www.devze.com 2023-01-08 15:40 出处:网络
From the Quartz Scheduler javadocs for the method setTimeZone of class CronTrigger: If setCron开发者_JAVA百科Expression(CronExpression) is called after this method, the TimeZone setting on the CronE

From the Quartz Scheduler javadocs for the method setTimeZone of class CronTrigger:

If setCron开发者_JAVA百科Expression(CronExpression) is called after this method, the TimeZone setting on the CronExpression will "win". However if setCronExpression(String) is called after this method, the time zone applied by this method will remain in effect, since the String cron expression does not carry a time zone!

What's the difference in calling both setters in different sequences?


What this means is that if you call setCronExpression(CronExpression) when you have already set a TimeZone using setTimeZone, the TimeZone you specified will be overwritten by the CronExpression's TimeZone. This is because the CronExpression class contains a TimeZone.

However, the String cron expression does not contain any time zone information - therefore the time zone you specified in setTimeZone will remain in effect.

Does that make sense?


There are three scenarios-

  1. You call setTimeZone() followed by setCronExpression(CronExpression). The time zone associated with the CronExpression will apply.

  2. You call setTimeZone() followed by setCronExpression(String). The time zone specified by setTimeZone() will apply since the String cron expression doesn't have a time zone associated.

  3. You call setCronExpression(CronExpression) or setCronExpression(String) followed by setTimeZone(). The time zone specified by setTimeZone() method will apply.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号