springboot-定时任务

简单使用

springboot-定时任务
在启动入口上加上@EnableScheduling ,在需要定时的方法上加上@Scheduled注解
启动类添加注解

package com.jie;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.scheduling.annotation.EnableAsync;
import org.springframework.scheduling.annotation.EnableScheduling;

//开启异步功能
@EnableAsync
@EnableScheduling //开启定时功能的注解
@SpringBootApplication
public class SpringbootAsynApplication {

    public static void main(String[] args) {
        SpringApplication.run(SpringbootAsynApplication.class, args);
    }

}

编写service类

package com.jie.service;

import org.springframework.scheduling.annotation.Scheduled;
import org.springframework.stereotype.Service;

@Service
public class ScheduleService {
    //秒 分 时 日 月 星期
    @Scheduled(cron = "0 * * * * 1-5")
    public void printLog(){
        System.out.println("打印日志---");
    }
}

里面有六个值,分别对应着注释中的。上述代码意思是:星期一到星期五的整秒执行方法一次。
springboot-定时任务
具体复杂的业务要求可以通过网上在线生成器
springboot-定时任务

springboot-定时任务

上一篇:数组搜索插入位置


下一篇:30道java面试题附答案