1

I have a scheduled.xml spring file with entries like:

<task:scheduled-tasks>

    <task:scheduled ref="calculateDailyFeesJob" method="sendMessage" cron="0 0 21 * * *" zone=""/>
    <task:scheduled ref="createInvoicesJob" method="sendMessage" cron="0 0 22 * * SUN"/>

How do I set the timezone?

user2395365
  • 1,991
  • 4
  • 18
  • 34
  • 1
    You can set timezones on schedulers when creating them programatically. Like in this question: http://stackoverflow.com/questions/14273917/java-quartz-scheduler-across-timezone. I think you will have to move from XML config to Java Config. – Rafal G. Mar 23 '15 at 22:41

0 Answers0