其他分享
首页 > 其他分享> > SpringBoot定时任务@EnableScheduling

SpringBoot定时任务@EnableScheduling

作者:互联网

1、pom.xml中导入必要的依赖:

<parent>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-parent</artifactId>
    <version>2.0.1.RELEASE</version>
 </parent>

<dependencies>
    <!-- SpringBoot 核心组件 -->
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-web</artifactId>
    </dependency>
</dependencies>

2.启动定时任务
在Application中设置启用定时任务功能@EnableScheduling。

// An highlighted block
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.scheduling.annotation.EnableScheduling;
 
@SpringBootApplication
@EnableScheduling
public class ResttemplatetestApplication {
 
    public static void main(String[] args) {
        SpringApplication.run(ResttemplatetestApplication.class, args);
    }
}

其中 @EnableScheduling 注解的作用是发现注解@Scheduled的任务并后台执行。
3.定时任务具体实现类


@RestController  //其他文件可加上@Component
public class HelloController {
    private static final SimpleDateFormat dateFormat = new SimpleDateFormat("HH:mm:ss");
    @GetMapping("/hello")
    @Scheduled(fixedRate = 2000) //每隔2秒执行一次
    public Object hello(){
        RestTemplate restTemplate = new RestTemplate();
        String url = "https://story.hhui.top/detail?id=666106231640";
        InnerRes res = restTemplate.getForObject(url, InnerRes.class);
        System.out.println("定时任务执行时间:" + dateFormat.format(new Date()));
        return  res;
    }
}

4.运行Spring Boot,输出结果为如下,每2秒钟打印出当前时间。
在这里插入图片描述
注意: 需要在定时任务的类上加上注释:@Component
在具体的定时任务方法上加上注释@Scheduled即可启动该定时任务。

cron中,还有一些特殊的符号,含义如下:

(*)星号:可以理解为每的意思,每秒,每分,每天,每月,每年...
(?)问号:问号只能出现在日期和星期这两个位置。
(-)减号:表达一个范围,如在小时字段中使用“10-12”,则表示从10到12点,即10,11,12
(,)逗号:表达一个列表值,如在星期字段中使用“1,2,4”,则表示星期一,星期二,星期四
(/)斜杠:如:x/y,x是开始值,y是步长,比如在第一位(秒) 0/15就是,从0秒开始,每15秒,最后就是0,15,30,45,60    另:*/y,等同于0/y

下面列举几个例子供大家来验证:

0 0 3 * * ?     每天3点执行
0 5 3 * * ?     每天3点5分执行
0 5 3 ? * *     每天3点5分执行,与上面作用相同
0 5/10 3 * * ?  每天3点的 5分,15分,25分,35分,45分,55分这几个时间点执行
0 10 3 ? * 1    每周星期天,3点10分 执行,注:1表示星期天    
0 10 3 ? * 1#3  每个月的第三个星期,星期天 执行,#号只能出现在星期的位置

cron表达式规则:https://www.cnblogs.com/javahr/p/8318728.htmlhttps://www.cnblogs.com/dubhlinn/p/10740838.html

在线Cron表达式生成器:https://cron.qqe2.com/

标签:Scheduled,10,SpringBoot,boot,cron,EnableScheduling,定时,执行,取值
来源: https://blog.csdn.net/weixin_45265547/article/details/121267328