本文介绍了30分钟后每隔春季cron表达的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我每30分钟要运行一次Spring作业.请检查我的cron表达式,对吗?
I have following Spring job to run after every 30 minutes. Please check my cron expression, is that correct?
这是相关的Spring configuration 文件中的完整cron作业定义:
Here is a full cron job definition from the related Spring configuration file:
<bean id="autoWeblogPingTrigger" class="org.springframework.scheduling.quartz.CronTriggerBean">
<property name="jobDetail" ref="jobDetailForWeblogPing"/>
<!-- run every 35 minutes -->
<property name="cronExpression" value="0 0 0 * * 30" />
</bean>
推荐答案
<property name="cronExpression" value="0 0/30 * * * ?" />
这篇关于30分钟后每隔春季cron表达的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!