SpringBoot之Scheduling(P)详解编程语言

1.创建java类SchedulingConfig

[email protected]

[email protected]

[email protected](cron = “0/20 * * * * ?”) // 每20秒执行一次

具体代码如下

package cn.wuyang.springboot.config; 
 
import org.springframework.context.annotation.Configuration; 
import org.springframework.scheduling.annotation.EnableScheduling; 
import org.springframework.scheduling.annotation.Scheduled; 
 
/** 
 * 定时任务 
 * [email protected] 
 * [email protected] 
 * [email protected](cron = "0/20 * * * * ?") // 每20秒执行一次 
 * @author wuyang 
 * 
 */ 
@Configuration 
@EnableScheduling 
public class SchedulingConfig { 
    @Scheduled(cron = "0/20 * * * * ?") // 每20秒执行一次 
    public void SchedulingTest() { 
        System.out.println(">>>>>>>>> SchedulingConfig.scheduler()"); 
    } 
 
} 

5.启动查看

这里写图片描述

原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/11251.html

(0)
上一篇 2021年7月19日
下一篇 2021年7月19日

相关推荐

发表回复

登录后才能评论