corn 주기설정 참고포스팅 | https://itworldyo.tistory.com/40
위의 포스팅에 가면 corn 주기설정이 잘 정리되어있습니다.
spring boot에서 schedule 처리를 하려면 springbootWebApplication에
@EnabledScheduling을 붙여줘야합니다.
package com.hta.lecture;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.scheduling.annotation.EnableScheduling;
@EnableScheduling
@SpringBootApplication
public class SpringbootWebApplication {
public static void main(String[] args) {
SpringApplication.run(SpringbootWebApplication.class, args);
}
}
schedule 처리할 메서드에 @scheduled(corn="* * * * * *")을 붙이고,
corn을 조정해 주기설정을 합니다.
// 매일 0시 0분 0초 자정
@Scheduled(cron="0 0 0 * * *")
public void deleteCoupon() {
userCouponMapper.updatePeriodUserCouponStatus();
}