1.在入口類中加入注解 @EnableScheduling

image.png
2.在具體方法中加注解@scheduled,并設(shè)定定時時間fixedDelay

image.png
這只是簡單的使用
這是復(fù)雜寫法: @Scheduled(cron = "0 0 2 * * ?") //每天凌晨兩點執(zhí)行
關(guān)鍵字 cron
1.在入口類中加入注解 @EnableScheduling
2.在具體方法中加注解@scheduled,并設(shè)定定時時間fixedDelay
這只是簡單的使用
這是復(fù)雜寫法: @Scheduled(cron = "0 0 2 * * ?") //每天凌晨兩點執(zhí)行
關(guān)鍵字 cron