Spring Schedule实现定时任务

时间:2021-01-16 07:44:59
applicationContext.xml

1. 增加配置

 

<task:annotation-driven />

 taks来自xmlns:task="http://www.springframework.org/schema/task"



2. 创建定时任务类
@Component
@Slf4j
public class CloseOrderTask {


    @Scheduled(cron="0 */1 * * * ?") //(每个1分钟的整数倍执行一次)
    public  void closeOrderTaskV1(){
        log.info("关闭订单定时任务启动");
        log.info("关闭订单定时任务结束");
    }


}

  

3.在线cron表达式生成器
http://cron.qqe2.com/