spring定时任务

spring定时任务配置:
<?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"
  xsi:schemaLocation="http://www.springframework.org/schema/beans
     http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
     http://www.springframework.org/schema/context
     http://www.springframework.org/schema/context/spring-context-3.0.xsd">
  <bean id="taskTest" class="com.gjy.task.TaskTestOne"></bean>
  
    <bean id="jobDetailFactoryBean" class="org.springframework.scheduling.quartz.MethodInvokingJobDetailFactoryBean">
         <property name="targetObject" ref="taskTest"/>
         <property name="targetMethod" value="testOnePrint"/>
         <property name="concurrent" value="false"/>
   </bean>
   
    <bean id="cronTrigger" class="org.springframework.scheduling.quartz.CronTriggerBean" >
        <property name="jobDetail" ref="jobDetailFactoryBean"/>
        <property name="cronExpression">
            <value>0/5 * * * * ?</value>
        </property>
    </bean>
    
     <bean id="schedulerFactory" class="org.springframework.scheduling.quartz.SchedulerFactoryBean">
     <property name="triggers">
         <list>
             <ref local="cronTrigger"/>
         </list>
     </property>
     
     <property name="autoStartup"><value>true</value></property>
     <property name="schedulerName"><value>singleRunScheduler</value></property>
  </bean>
  
  <!--  
      时间大小由小到大排列,从秒开始,顺序为 秒,分,时,天,月,年    *为任意 ?为无限制
  "0/10 * * * * ?" 每10秒触发
  "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触发
  -->
</beans>


测试类:
package com.gjy.task;

import org.springframework.stereotype.Service;

@Service
public class TaskTestOne {

    public void testOnePrint() {
        System.out.println("TestOne测试打印");
    }

}


发布启动web服务器:
TestOne测试打印
TestOne测试打印
TestOne测试打印

你可能感兴趣的:(spring)