'Quartz Cron Job scheduling

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 !



Solution 1:[1]

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.

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1