SpringBoot原生定时任务解析
【摘要】
SpringBoot原生定时任务,不需要引入任何依赖
==只要了解,几个注解就可以使用==
1.在启动类上加入@EnableScheduling标签2.在定时任务方法上加入@Schedule(fixe...
SpringBoot原生定时任务,不需要引入任何依赖
==只要了解,几个注解就可以使用==
- 1.在启动类上加入@EnableScheduling标签
- 2.在定时任务方法上加入@Schedule(fixedDelay=5000)
- 3.就是如此简单,简单的不可想象
package zebra.shjf;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.context.ConfigurableApplicationContext;
import org.springframework.scheduling.annotation.EnableScheduling;
@SpringBootApplication
@EnableScheduling
public class TestQuartzApplication {
public static void main(String[] args) {
SpringApplication.run(TestQuartzApplication.class, args);
}
}
@Component
public class ScheduledTasks{
@Scheduled(fixedDelay = 5000)
public void execute() {
System.out.println("当前时间:" + new Date());
}
}
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
文章来源: springlearn.blog.csdn.net,作者:西魏陶渊明,版权归原作者所有,如需转载,请联系作者。
原文链接:springlearn.blog.csdn.net/article/details/53858280
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)