您的位置:首页 > 编程语言 > Java开发

spring定时任务--基本使用

2013-11-29 14:22 337 查看
 一、基本使用:

        spring的定时任务使用起来十分方便,只需要两步:1、写好执行定时任务的类和方法;2、配置spring定时任务配置文件:

        1、写好执行定时任务的类和方法:

[java] view
plaincopy

package com.test;  

  

public class Test {  

  

    public void test() {  

        System.out.println("执行定时任务的方法。");  

    }  

}  

        2、配置spring的定时任务配置文件(可以新建一个xml文件,也可以在已经有的xml文件中配置)

配置文件内容:

[html] view
plaincopy

<?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:aop="http://www.springframework.org/schema/aop"  

       xmlns:tx="http://www.springframework.org/schema/tx"  

       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/tx http://www.springframework.org/schema/tx/spring-tx-3.0.xsd  

       http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.0.xsd  

       http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd">  

  

   <bean name="quartzScheduler" class="org.springframework.scheduling.quartz.SchedulerFactoryBean">  

         

        <!--必须,QuartzScheduler 延时启动,应用启动后 QuartzScheduler 再启动-->  

        <property name="startupDelay" value="60"/>          

        <!-- 普通触发器 :触发器列表-->  

        <property name="triggers">  

            <list>                  

                <ref local="<span style="color:#ff0000;">testTrigger</span>"/>  

            </list>  

        </property>  

    </bean>  

  

<!-- 配置执行定时任务的类和方法 -->   

    <bean id="<span style="color:#ff0000;">testDetail</span>"    

        class="org.springframework.scheduling.quartz.MethodInvokingJobDetailFactoryBean">    

        <property name="targetObject">    

            <bean class="<span style="color:#ff0000;">com.test.Test</span>"></bean>  

        </property>    

        <property name="targetMethod">    

            <value><span style="color:#ff0000;">test</span></value>    

        </property>    

    </bean>  

[html] view
plaincopy

<!-- 配置触发器 -->     

    <bean id="<span style="color:#ff0000;">testTrigger</span>"    

        class="org.springframework.scheduling.quartz.CronTriggerBean">    

        <property name="jobDetail">    

            <ref bean="<span style="color:#ff0000;">testDetail</span>"/> <!-- 触发器触发的 执行定时任务的bean -->     

        </property>    

        <property name="cronExpression">    

            <!-- 每天23时   -->  <!-- 定时任务执行的间隔 -->   

            <value>0 0 23 * * ?</value>  

        </property> 
  

  </bean> 
 

 </beans>  
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: