spring-boot定时任务(非quartz)

@Component
@Configuration      //1.主要用于标记配置类,兼备Component的效果。
@EnableScheduling   // 2.开启定时任务
public class SaticScheduleTask {
    //3.添加定时任务
    @Scheduled(cron = "0/5 * * * * ?")
    //或直接指定时间间隔,例如:5秒
    private void configureTasks() 
        System.err.println("执行静态定时任务时间: " + LocalDateTime.now());
    }
}


版权声明:本文为asnn0208原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接和本声明。