springboot 使用springtask

目录

1.什么是springtask?

     1.1 Springtask是Spring 3.0以后自带的调度工具,比Quartz的使用更加方便

     1.2 实现


1.什么是springtask?

     1.1 Springtask是Spring 3.0以后自带的调度工具,比Quartz的使用更加方便

     1.2 实现

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

@Component
public class Tasktest {
    @Scheduled(cron = "*/1 * * * * ?")
    public  void po(){
        System.out.println(System.currentTimeMillis());
    }
}

 

你可能感兴趣的:(springboot,Quartz,spring,boot,springtask)