Ihar Hancharenka 3f5bd60c70 m
2024-06-08 08:32:55 +03:00

14 строки
494 B
Plaintext

https://spring.io/guides/gs/scheduling-tasks/
https://docs.spring.io/spring-framework/docs/current/javadoc-api/org/springframework/scheduling/annotation/Scheduled.html
at main app
import org.springframework.scheduling.annotation.EnableScheduling;
@EnableScheduling
https://docs.spring.io/spring-framework/docs/current/javadoc-api/org/springframework/scheduling/annotation/EnableScheduling.html
later...
@Scheduled(initialDelay = ONE_SECOND, fixedDelay = ONE_MINUTE)
samples