Hi all
i am using Spring 3.0 scheduling capabilities to schedule my task this way:
now suppose i start my PC ( a laptop) at 8 pm.. then both the tasks won't be scheduled to runCode:<task:scheduled-tasks scheduler="myScheduler"> <task:scheduled ref="shareScheduler" method="fetchLatestPrices" cron="00 00 19 * * *"/> <task:scheduled ref="shareScheduler" method="runPortfolioReport" cron="00 47 16 * * *"/> </task:scheduled-tasks>
I was wondering if there is a way to configure spring scheduling so that i can recover from that.
I know if i use Quartz, i can use perisistent triggers so taht if the trigger didn't fire (because i started the PC too late), as soon as i start the PC, the scheduled job will run
Are there any way i can achieve the same thing using Spring-SCheduling?
w/kindest regards
marco


Reply With Quote