SpringBoot定时任务
Posted cppdy
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SpringBoot定时任务相关的知识,希望对你有一定的参考价值。
代码做定时任务:1、开个线程,线程里面休眠去做
2、使用一些定时任务的框架去做
1、创建TimerTest类
package com.cppdy.service; import org.springframework.scheduling.annotation.Scheduled; import org.springframework.stereotype.Component; @Component public class TimerTest { @Scheduled(fixedRate=2000) public void showTime() { System.out.println("当前时间戳:"+System.currentTimeMillis()); } }
2、在Application类中开启定时任务(@EnableScheduling)
package com.cppdy; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.scheduling.annotation.EnableScheduling; @SpringBootApplication @EnableScheduling public class Application { public static void main(String[] args) { SpringApplication.run(Application.class, args); } }
以上是关于SpringBoot定时任务的主要内容,如果未能解决你的问题,请参考以下文章
springboot项目使用SchedulingConfigurer实现多个定时任务
#yyds干货盘点# springboot整合Elastic Job实现分片配置定时任务