定时器SchedulerTask

package com.daimeng.api.task;
import org.springframework.scheduling.annotation.Scheduled;
importorg.springframework.stereotype.Component;
@Component
public class SchedulerTask {
     private int count=0;
     
     @Scheduled(cron="*/6 * * * * ?")
    private void process(){
        System.out.println("this is scheduler task runing   "+(count++));
    }
}


package com.daimeng.api.task;
import java.text.SimpleDateFormat;
import java.util.Date;
import org.springframework.scheduling.annotation.Scheduled;
importorg.springframework.stereotype.Component;
@Component
public class Scheduler2Task {
     private static final SimpleDateFormat dateFormat = new  SimpleDateFormat("HH:mm:ss");
    @Scheduled(fixedRate = 6000)
    public void reportCurrentTime() {
        System.out.println("现在时间:" + dateFormat.format(new  Date()));
    }
}


{context}