Spring 中使用 SpringTask 实现定时任务

文章目录

SpringBoot 中使用

一. 启动类添加注解

  • @EnableScheduling开启定时任务
@EnableScheduling
@SpringBootApplication
public class DemoApplication {

    public static void main(String[] args) {
        SpringApplication.run(DemoApplication.class, args);
    }
}

二. 编辑定时任务处理类

  • @Service 加入Spring容器管理
  • @Scheduled() 添加执行时间
  • cron = "*/5 * * * * ? " 设置具体的执行时间(每隔5 秒执行)
@Service
public class TaskService {
    @Scheduled(cron = "*/5 * * * * ? ")
    public void taskDemo() {
        System.out.println("SpringTask 定时任务   " + new Date());
    }
}

三. 运行项目

  • 即可看到控制台的输出
SpringTask 定时任务   Tue Aug 03 14:29:10 CST 2021
SpringTask 定时任务   Tue Aug 03 14:29:15 CST 2021
SpringTask 定时任务   Tue Aug 03 14:29:20 CST 2021
SpringTask 定时任务   Tue Aug 03 14:29:25 CST 2021
SpringTask 定时任务   Tue Aug 03 14:29:30 CST 2021
SpringTask 定时任务   Tue Aug 03 14:29:35 CST 2021
SpringTask 定时任务   Tue Aug 03 14:29:40 CST 2021

SpringMVC 中使用

  • 完整项目代码:https://gitee.com/aoweibrave/task-demo.git
  • 创建mavem 项目时,选择模板:maven-archetype-webapp
  • 引入Spring的依赖
  • 修改web.xml
<!DOCTYPE web-app PUBLIC
 "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
 "http://java.sun.com/dtd/web-app_2_3.dtd" >
<web-app>
  <display-name>Archetype Created Web Application</display-name>

  <context-param>
    <param-name>contextConfigLocation</param-name>
    <param-value>classpath:applicationContext.xml</param-value>
  </context-param>
  <listener>
    <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
  </listener>
</web-app>

  • 修改applicationContext.xml
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xmlns:context="http://www.springframework.org/schema/context"
       xmlns:task="http://www.springframework.org/schema/task"
       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
	   http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.2.xsd
	   http://www.springframework.org/schema/task http://www.springframework.org/schema/task/spring-task.xsd
       http://www.springframework.org/schema/task http://www.springframework.org/schema/task/spring-task-3.2.xsd"
       default-autowire="byName" default-lazy-init="false">
    <!--    配置包扫描-->
    <context:component-scan base-package="com.example.demo.service"/>
    <!--    开启 SpringTask 注解-->
    <task:annotation-driven/>
</beans>
  • 编辑定时任务处理类
@Service
public class TaskService {
    @Scheduled(cron ="*/2 * * * * ? ")
    public void check(){
        System.out.println(new Date()+"定时任务");
    }
}
  • 运行项目,即可看到控制台的输出
Tue Aug 03 15:41:16 CST 2021定时任务
Tue Aug 03 15:41:18 CST 2021定时任务
Tue Aug 03 15:41:20 CST 2021定时任务
Tue Aug 03 15:41:22 CST 2021定时任务
Tue Aug 03 15:41:24 CST 2021定时任务
Tue Aug 03 15:41:26 CST 2021定时任务

常用 cron 表达式

CRON表达式         执行时间
"*/5 * * * * ? "    每隔5秒执行一次
"0 */1 * * * ? "   每隔1分钟执行一次
"0 0 12 * * ?"    每天中午十二点触发
"0 0 23 * * ?"    每天23点执行一次
"0 0 1 * * ?"    每天凌晨1点执行一次
"0 0 1 1 * ?"    每月1号凌晨1点执行一次
"0 0 23 L * ?"    每月最后一天23点执行一次
"0 0 1 ? * L"    每周星期天凌晨1点实行一次
"0 26,29,33 * * * ?"    在26分、29分、33分执行一次
"0 0 0,13,18,21 * * ?"    每天的0点、13点、18点、21点都执行一次
"0 15 10 ? * *"    每天早上10:15触发
"0 15 10 * * ?"    每天早上10:15触发
"0 15 10 * * ? *"    每天早上10:15触发
"0 15 10 * * ? 2005"    2005年的每天早上10:15触发
“0 * 14 * * ?"    每天从下午2点开始到2点59分每分钟一次触发
"0 0/5 14 * * ?"    每天从下午2点开始到2:55分结束每5分钟一次触发
"0 0/5 14,18 * * ?"    每天的下午2点至2:55和6点至6点55分两个时间段内每5分钟一次触发
"0 0-5 14 * * ?"    每天14:00至14:05每分钟一次触发
"0 10,44 14 ? 3 WED"    三月的每周三的14:10和14:44触发
"0 15 10 ? * MON-FRI"    每个周一、周二、周三、周四、周五的10:15触发

参考链接

springboot定时任务:https://www.bilibili.com/video/BV1B4411m7Yu
定时任务利器之Spring Task:https://www.bilibili.com/video/BV1kt41137xv
整理一些corn表达式:https://blog.csdn.net/yang920106/article/details/73733628
Spring定时任务不执行的解决:https://blog.csdn.net/qq_35595521/article/details/54314310

上一篇:CST — 电磁及EMC仿真工具


下一篇:CodeSmith4-案例