Spring Task ABC

  1. 配置说明

    <task:annotation-driven scheduler="xxxScheduler" />

    <task:scheduler id="xxxScheduler" pool-size="10" />

    <context:component-scan base-package="xxx.tasks" />

  2. 任务代码

    import org.springframework.scheduling.annotation.Scheduled;

    import org.springframework.stereotype.Component;

         

    @Component

    public class DemoTask {

         

        @Scheduled(cron = "0/5 * * * * ? ") // 每5秒执行一次

        public void doTask() {

            System.out.println("begin run ...");

            try {

                Thread.sleep(10000);

            } catch (InterruptedException e) {

                e.printStackTrace();

            }

            System.out.println("done.");

        }

    }

  3. 测试代码

    import java.io.IOException;

    import java.util.Scanner;

         

    import org.springframework.context.ApplicationContext;

    import org.springframework.context.support.ClassPathXmlApplicationContext;

         

    public class DemoTaskApp {

         

        public static void main(String[] args) throws IOException {

            ApplicationContext context = new ClassPathXmlApplicationContext("spring-test.xml");

            Scanner input = new Scanner(System.in);

                

            new Scanner(System.in).nextLine();

        }

         

    }

  4. CRON表达式说明

    一个cron表达式有至少6个(也可能7个)有空格分隔的时间元素。

    1 秒(0~59)

    2 分钟(0~59)

    3 小时(0~23)

    4 天(0~31)

    5 月(0~11)

    6 星期(1~7 1=SUN 或 SUN,MON,TUE,WED,THU,FRI,SAT)

    7.年份(1970-2099)

  5. CRON表达式实例

    0 0 10,14,16 * * ? 每天上午10点,下午2点,4点

    0 0/30 9-17 * * ? 朝九晚五工作时间内每半小时

    0 0 12 ? * WED 表示每个星期三中午12点

    "0 0 12 * * ?" 每天中午12点触发

    "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期间的每1分钟触发

    "0 0/5 14 * * ?" 在每天下午2点到下午2:55期间的每5分钟触发

    "0 0/5 14,18 * * ?" 在每天下午2点到2:55期间和下午6点到6:55期间的每5分钟触发

    "0 0-5 14 * * ?" 在每天下午2点到下午2:05期间的每1分钟触发

    "0 10,44 14 ? 3 WED" 每年三月的星期三的下午2:10和2:44触发

    "0 15 10 ? * MON-FRI" 周一至周五的上午10:15触发

    "0 15 10 15 * ?" 每月15日上午10:15触发

    "0 15 10 L * ?" 每月最后一日的上午10:15触发

    "0 15 10 ? * 6L" 每月的最后一个星期五上午10:15触发

    "0 15 10 ? * 6L 2002-2005" 2002年至2005年的每月的最后一个星期五上午10:15触发

    "0 15 10 ? * 6#3" 每月的第三个星期五上午10:15触发

posted @ 2016-11-18 14:25  抱影无眠  阅读(186)  评论(0编辑  收藏  举报