Hey Guys,

For my current spring boot project I have been using a @Scheduled annotation and using cron syntax for running jobs, but now I don’t want to schedule jobs on holiday (based on US calendar).

So is there any approach to skip the schedule on holiday.

Thanks for your help in advanced.

  • tiramichu
    link
    fedilink
    arrow-up
    10
    ·
    1 day ago

    Perhaps you could simply allow the cron to run on the same schedule, but add supplementary code within the method body to check for holidays and exit early.