文件名称:使用@Scheduled创建定时任务-python实现文件按照日期命名的方法
文件大小:1.08MB
文件格式:PDF
更新时间:2024-07-08 20:02:18
springboot
十二、 其他内容 12.1 使用@Scheduled创建定时任务 在 Spring Boot的主类(启动类)中加入@EnableScheduling注解,启用定时任务的配置。@Scheduled支 持 cron表达式。 创建如下类,启动应用。 import org.springframework.scheduling.annotation.Scheduled; import org.springframework.stereotype.Component; import java.text.SimpleDateFormat; import java.util.Date; @Component public class ScheduledTasks { private static final SimpleDateFormat dateFormat1 = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); private static final SimpleDateFormat dateFormat2 = new SimpleDateFormat("yyyyMMdd HH:mm:ss"); /** * 从当前时间起 5秒执行一次 */