Choose a topic to test your knowledge and improve your Spring Boot skills
Spring Boot provides a good support to write a scheduler on the Spring applications
To enable the scheduler for your application?
@Scheduled annotation is used to trigger the scheduler for a specific time period?
@Scheduled(cron = "0 * 9 * * ?")
Fixed Rate scheduler not supported in Spring boot .
@Scheduled(fixedRate = 1000)
Fixed Delay supported in spring boot ?
@Scheduled(fixedDelay = 1000, initialDelay = 1000)