wang-hao-jie
2021-11-26 ecc26b7331cf87605e0a5d14ad645b5fe7a3c8ae
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 {
    }
}