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 {
|
}
|
}
|