<?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:tx="http://www.springframework.org/schema/tx" xmlns:aop="http://www.springframework.org/schema/aop" xsi:schemaLocation=" http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.2.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.2.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.2.xsd http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.2.xsd"> <bean id="massFailureResendTask" class="com.yysports.task.MassFailureResendTask" /> <bean id="massFailureResendJob" class="org.springframework.scheduling.quartz.MethodInvokingJobDetailFactoryBean"> <property name="targetObject" ref="massFailureResendTask"/> <property name="concurrent" value="false" /> <property name="targetMethod" value="execute"/> </bean> <bean id="massFailureResendCronTrigger" class="org.springframework.scheduling.quartz.CronTriggerFactoryBean"> <property name="jobDetail" ref="massFailureResendJob" /> <property name="startDelay" value="1000" /> <property name="cronExpression" value="0 0/5 * * * ?" /> <!-- 每隔一小时执行该任务 --> <!-- <property name="cronExpression" value="0 0 0/1 * * ?" /> --> </bean> <bean id="SpringJobSchedulerFactoryBean" class="org.springframework.scheduling.quartz.SchedulerFactoryBean"> <property name="triggers"> <list> <ref bean="massFailureResendCronTrigger"/> </list> </property> </bean> </beans>
时间: 2024-10-24 05:00:10