Skip to content

Latest commit

 

History

History
26 lines (20 loc) · 369 Bytes

定时任务.md

File metadata and controls

26 lines (20 loc) · 369 Bytes

定时任务

开启定时任务
@Configuration
@MapperScan("com.example.mapper")
@EnableScheduling
public class SpringBootConfig {
}
定时任务
@Scheduled(cron="0 0 2 * * ?")
private void update1(){
    System.out.println("123");
}

@Scheduled(cron="0/10 * * * * ?")
private void update2(){
    System.out.println("124");
}