Reputation: 345
I want to schedule a Job in the Quartz Cron job format to run everyday at 4:30am. so i did 0 30 4 */1 * ? . Will this work good. How different is this expression when compared to 0 30 4 * * ? . Plz tell me, if they are going to work the same or not !
Upvotes: 1
Views: 522
Reputation: 7273
Yes, they should work equally. */1
is cron idiom for "every 1 day", but that is already the default for cron expressions unless specified otherwise.
Upvotes: 1