wang-hao-jie
2021-11-22 24908b26035b3aefe84ba557e7cddd5a9a8aece9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package cn.exrick.xboot.your.schedulings;
import org.springframework.scheduling.annotation.Scheduled;
import org.springframework.stereotype.Component;
 
import java.io.IOException;
 
@Component
public class CarScheduleImpl {
 
 
    @Scheduled(cron="0 0 * * * ?")//每小时执行一次
    public void execute() throws IOException {
    }
}