码迷,mamicode.com
首页 > 编程语言 > 详细

SpringBoot集成@Scheduled()定时任务

时间:2020-04-22 16:20:14      阅读:90      评论:0      收藏:0      [点我收藏+]

标签:定时   size   oid   color   actor   class   tor   style   test   

1.启动类增加注解:

@EnableScheduling
@ComponentScan({"com.xxx.test"})

1 @EnableScheduling
2 @ComponentScan({"com.xxx.test"})
3 @SpringBootApplication
4 public class MainApplication  {
5     public static void main(String[] args) {
6 
7         SpringApplication.run(MainApplication.class, args);
8     }

 

2.定时任务类增加注解:@Component :将当前类实例化注入到容器中

3.定时方法增加注解:@Scheduled(cron = "* */5 * * * ?")

 1 @Component
 2 public class JobTest {
 3 
 4     private static Logger log = LoggerFactory.getLogger(JobTest.class);
 5 
 6     /**
 7      * 秒、分、时、日、月、年
 8      */
 9     @Scheduled(cron = "* */5 * * * ?")
10     public void scheduleTest() {
11         log.info("系统定时任务测试开始");
12 
13         //TODO
14 
15         log.info("系统定时任务测试结束");
16     }

 

SpringBoot集成@Scheduled()定时任务

标签:定时   size   oid   color   actor   class   tor   style   test   

原文地址:https://www.cnblogs.com/BenNiaoXianFei/p/12752645.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!