반응형 cron1 [Spring Boot] Scheduled사용하여 특정 시간마다 동작하는 코드 구현 cron 특정 시간마다 동작하는 코드 구현 1. Main 클래스인 Application에 @EnableSchduleing 어노테이션 사용 @EnableScheduling @SpringBootApplication(exclude = [SecurityAutoConfiguration::class]) class Application fun main(args: Array) { runApplication(*args) } 2. 주기적으로 실행할 작업에 @Scheduled 어노테이션 사용 @Component class PaymentCancelScheduler{ @Scheduled(cron = "10 * * * * *", zone = "Asia/Seoul") fun claimChargingRequest() { printl.. 2023. 5. 19. 이전 1 다음 반응형