spring配置quartz:定时去执行一个方法

参考文章:http://www.jb51.net/article/107339.htm


1,其中加注释的地方是自己要修改的,其他的代码都不可以不动,当然你也可以把id什么的改成自己想要的。项目启动时你想要的方法就会自动执行了。

2,这中配置对版本有些要求,具体参考上面的文章。


<?xml version="1.0" encoding="UTF-8"?>

<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">

  <bean id="sceneDao" class="com.surekam.collie.scene.dao.impl.SceneDaoImpl">  //自己的Dao
    <property name="sessionFactory" ref="sessionFactory"/>
    <property name="jdbcBaseDAO" ref="jdbcBaseDAO"/>
  </bean>

    <bean id="sceneService" class="com.surekam.collie.scene.service.impl.SceneServiceImpl"> //自己的service
    <property name="sceneDao" ref="sceneDao"/>
    </bean>

    <bean id="backupJobDetail" class="org.springframework.scheduling.quartz.MethodInvokingJobDetailFactoryBean">
    <property name="targetObject">
    <ref bean="sceneService"/>             //引入上面自己的service
    </property>
    <property name="targetMethod">
    <!--<value>getDatasByClass</value>-->    
    <value>textQuartz</value>              //textQuartz是service中要执行的方法,写自己的方法
    </property>
    </bean>

    <bean id="backupCronEventTrigger" class="org.springframework.scheduling.quartz.CronTriggerFactoryBean">
    <property name="jobDetail">
    <ref bean="backupJobDetail"/>
    </property>
    <property name="cronExpression">
    <!--每5s执行一次-->
    <value>* 0/5 * * * ?</value>         //cron表达式,设置多长时间执行一次
    <!--12点执行一次-->
    <!--<value>0 0 12 * * ?</value>-->
    </property>
    </bean>
    <bean id="backupStrategy" class="org.springframework.scheduling.quartz.SchedulerFactoryBean" lazy-init="false">
    <property name="triggers">
    <list>
    <ref bean="backupCronEventTrigger"/>
    </list>
    </property>
    </bean>
</beans>



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值