郑永安
2023-06-19 451e341df739f387201914b67323efa1c4f4c8d3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
//package com.ruoyi.system.web;
//
//import org.springframework.beans.factory.annotation.Autowired;
//import org.springframework.context.annotation.Configuration;
//import org.springframework.scheduling.annotation.EnableScheduling;
//import org.springframework.scheduling.annotation.Scheduled;
//
//@Configuration      //1.主要用于标记配置类,兼备Component的效果。
//@EnableScheduling   // 2.开启定时任务
//public class SaticScheduleTask {
//
//    @Autowired
//    CompanyWarningController companyWarningController;
//
//    //3.添加定时任务
//    @Scheduled(cron = " 0 0 0 * * ?")
//    //或直接指定时间间隔,例如:每天凌晨执行
//    //@Scheduled(fixedRate=5000)
//    private void configureTasks() {
//        companyWarningController.checkCompanyIsSoonExpire();
//    }
//}