18 lines
367 B
Java
18 lines
367 B
Java
|
package com.sky.task;
|
||
|
|
||
|
import lombok.extern.slf4j.Slf4j;
|
||
|
import org.springframework.scheduling.annotation.Scheduled;
|
||
|
import org.springframework.stereotype.Component;
|
||
|
|
||
|
import java.util.Date;
|
||
|
|
||
|
@Slf4j
|
||
|
@Component
|
||
|
public class MyTask {
|
||
|
@Scheduled(cron = "0/5 * * * * ?")
|
||
|
public void executed(){
|
||
|
log.info("定時任務開始執行:{}",new Date());
|
||
|
|
||
|
}
|
||
|
}
|