坑爹的quartz

表达式:

从0秒开始每15秒执行一次
<property name="cronExpression" value="0/15 * * * * ?"></property>


Cron表达式范例:

                 每隔5秒执行一次:*/5 * * * * ?

                 每隔1分钟执行一次:0 */1 * * * ?

                 每天23点执行一次:0 0 23 * * ?

                 每天凌晨1点执行一次:0 0 1 * * ?

                 每月1号凌晨1点执行一次:0 0 1 1 * ?

                 每月最后一天23点执行一次:0 0 23 L * ?

                 每周星期天凌晨1点实行一次:0 0 1 ? * L

                 在26分、29分、33分执行一次:0 26,29,33 * * * ?

                 每天的0点、13点、18点、21点都执行一次:0 0 0,13,18,21 * * ?



基本配置,当list中有多个的时候,就加进去,目前加进去的这个是第3个

<bean id="newsVerifyTimerjob"
		class="org.springframework.scheduling.quartz.MethodInvokingJobDetailFactoryBean">
		<property name="targetObject">
			<bean class="com.jingwei.aut.quartz.NewsVerifyTimerjob" />
		</property>
		<property name="targetMethod" value="timeSentJob" />
		<property name="concurrent" value="false" /><!-- 作业不并发调度 -->
	</bean>

	<bean id="newsVerifyTimerjobTrigger" class="org.springframework.scheduling.quartz.CronTriggerBean">
		<property name="jobDetail" ref="newsVerifyTimerjob"></property>
		<property name="cronExpression" value="0/15 * * * * ?"></property>
	</bean>


<bean autowire="no"
		class="org.springframework.scheduling.quartz.SchedulerFactoryBean">
		<property name="triggers">
			<list>
				<ref bean="cronTrigger" />
				<ref bean="deleteDiaryCountTrigger" />
				<ref bean="newsVerifyTimerjobTrigger" />
				<!-- ref bean="importEntityVerifyDataJobTrigger"/> -->
			</list>
		</property>
	</bean>

你可能感兴趣的:(quartz)