SpringBoot整合定时任务task

1、整合定时任务

      1)使用注解@EnableScheduling 开启定时任务,会自动扫描

      2)在类前添加@Componet注解声明为组件被容器扫描

      3)在定时任务方法前添加@Scheduled(fixedRate =时长)设置定时任务启动的时间间隔

程序示例:

@SpringBootApplication
@ComponentScan(basePackages = { "com.test" })
@EnableScheduling //开启定时任务
public class TestApplication{

    public static void main(final String[] args) {
        SpringApplication.run(TestApplication.class,args);
    }
}
@Component
public class TestTask {

    public static final SimpleDateFormat sdf = new SimpleDateFormat("HH:mm:ss");
    //定义每过3秒执行任务
    @Scheduled(fixedRate=3000)
    public void test(){
        System.out.println("当前时间:" + sdf.format(new Date()));
    }
}

2、还可以以表达式的形式定义执行时间,获取到Cron表达式后填入@Scheduled 中  获取表达式网址:http://cron.qqe2.com

SpringBoot整合定时任务task_第1张图片

程序示例:

@Component
public class TestTask {

    public static final SimpleDateFormat sdf = new SimpleDateFormat("HH:mm:ss");
    
    //自定义的时间
    @Scheduled(cron = "21/59 * * * * ? *")
    public void test(){
        System.out.println("当前时间:" + sdf.format(new Date()));
    }
}

3、SpringBoot整合异步任务

在启动类 上加入 @EnableAsync 开启异步,会自动扫描

@Component注解类,@Async注解方法 (多个有该注解的方法会同时启动)

 

 

你可能感兴趣的:(SpringBoot整合定时任务task)