springboot 定时任务
-
注解:
-
@EnableScheduling(启动类上,开启定时功能)
@SpringBootApplication @EnableScheduling public class SpringbootTaskApplication { public static void main(String[] args) { SpringApplication.run(SpringbootTaskApplication.class, args); } }
-
@Schedule(用在自定义定时任务类的方法上)
@Component @Slf4j public class TaskTest { //cron表达式,可以百度:cron表达式在线生成 @Scheduled(cron = "0/5 * * * * ?") public void test(){ //将信息输出到日志文件中 log.error("===========时间任务执行了============"); } }
-