Spyke
java·JavabyThumper

[Question] How make sure that the scheduler does not run on holiday

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.

View original on lemmy.world

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.

13

You reached the end

[Question] How make sure that the scheduler does not run on holiday | Spyke