Reputation: 26212
Concerning http://www.opensymphony.com/quartz/wikidocs/CronTriggers%20Tutorial.html .. given bunch of examples and I just don't get this, how would I write CronTrigger expression to run every minute of every day for unlimited amount of time. I've "figured" out about running it every second which is easy "* * * * * ?"
how would I write expression which runs every minute lets say..
Upvotes: 0
Views: 1856
Reputation: 403481
Try
0 * * * * ?
That means "the zero'th second of every minute"
Upvotes: 4