Skip to content
Advertisement

Scheduler not running in Spring Boot

I have created a Spring Boot application. I have configured my class that contains the scheduler method startService(). Below is my code :

Service Class :

JavaScript

Main Class :

JavaScript

I have annotated the class as @Component and also method as @Scheduled(fixedRate = 30000) that will running as a scheduler. But while running the application as Spring Boot the scheduler does not trigger. The console show the below message:

JavaScript

Can anyone please help me out.

Advertisement

Answer

I was finally able to solve the above issue, I changed the package of my service class EnverseDemoService from package com.mk.service; to com.mk.envers.service;. This is because if the main configuration class EnverseDemoApplication is present in the package com.mk.envers. All the other classes in the boot application should be in the qualifying package. Eg: com.mk.envers.*;

User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement