Search code examples
springspring-bootschedule

Configure scheduler special condition


I need a special scheduler. I want to solve my problem by the using spring boot schedule. My problem:

- every 8am start to work

- if scheduler start, every hour call a function

- evening 10pm finish.


Solution

  • See in online cron generator

    @Scheduled(cron = "0 0 8-22 ? * *")
    

    At second :00, at minute :00, every hour between 08am and 22pm, of every day