Scheduler not running in Spring Boot
May be you can solve this problem by adding the @ComponentScan annotation in the configuration file @SpringBootApplication @EnableScheduling @ComponentScan(basePackages = “com.mk.service”) @PropertySource(“classpath:application.properties”) public class EnverseDemoApplication { public static void main(String[] args) { SpringApplication.run(EnverseDemoApplication.class, args); } }