简单的Spring定时任务


web.xml
<context-param>
    <param-name>contextConfigLocation</param-name>
    <param-value>classpath*:applicationContext.xml</param-value>
</context-param>

<listener>
    <description>Spring Context</description>
    <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
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.xsd
        http://www.springframework.org/schema/task
        http://www.springframework.org/schema/task/spring-task.xsd">

    <!-- 指定Spring扫描组件的路径 -->
    <context:component-scan base-package="io.zbc.*" />
    <!-- 使Spring能够识别@Scheduled -->
    <task:annotation-driven scheduler="myScheduled" />
    <!-- 根据情况选择是否需要配置线程池 -->
    <task:scheduler id="myScheduled" pool-size="10" />

</beans>
TestTimedTask.java
import org.springframework.scheduling.annotation.Scheduled;
import org.springframework.stereotype.Component;

@Component
public class TestTimedTask {
    // 周一至周五,9:00到17:00之间,每5分钟执行一次
    @Scheduled(cron = "0 0/5 9-17 * * MON-FRI")
    public void testTimedTask() {
        System.out.println("任务执行...");
    }
}
cronExpression表达式
字段 允许值 允许的特殊字符  
0-59 , - * /  
0-59 , - * /  
小时 0-23 , - * /  
日期 1-31 , - * / L W C  
月份 1-12 或者 JAN-DEC , - * /  
星期 1-7 或者 SUN-SAT , - * / L C #  
年(可选) 留空, 1970-2099 , - * /  
特殊字符解释:

“,”字符被用来指定另外的值。如:“MON,WED,FRI”在星期域里表示”星期一、星期三、星期五”。

“-”字符被用来指定一个范围。如:“10-12”在小时域意味着“10点、11点、12点”。

“*”字符被用来指定所有的值。如:”*“在分钟的字段域里表示“每分钟”。

“?”字符只在日期域和星期域中使用。它被用来指定“非明确的值”。当你需要通过在这两个域中的一个来指定一些东西的时候,它是有用的。看下面的例子你就会明白。

“L”字符指定在月或者星期中的某天(最后一天)。即“Last ”的缩写。但是在星期和月中“L”表示不同的意思。如:
在月子段中“L”指月份的最后一天-1月31日,2月28日;
在星期字段中则简单的表示为“7”或者“SAT”;
在星期字段中在某个value值得后面,则表示“某月的最后一个星期value”,如“6L”表示某月的最后一个星期五。

“W”字符只能用在月份字段中,该字段指定了离指定日期最近的那个星期日。

“#”字符只能用在星期字段,该字段指定了第几个星期value在某月中。


上篇: 在Eclipse中配置Tomcat8.5.x 下篇: 关于Java空格的那些事