我每隔30分钟跟随一次Spring工作。请检查我的cron表达式,这是正确的吗?
“0 0 0 * * 30”
以下是相关Spring 配置文件中的完整cron作业定义:
<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>
答案 0 :(得分:111)
根据Quartz-Scheduler Tutorial
它应该是value="0 0/30 * * * ?"
cronExpression的字段顺序是
1.Seconds
2.Minutes
3.Hours
4.Day的日
5.Month
6.Day-的周的
7.Year(可选字段)
确保您至少有6个参数,否则您将收到错误(年份是可选的)
答案 1 :(得分:51)
图形上,Quarz的cron语法是(source):
+-------------------- second (0 - 59)
| +----------------- minute (0 - 59)
| | +-------------- hour (0 - 23)
| | | +----------- day of month (1 - 31)
| | | | +-------- month (1 - 12)
| | | | | +----- day of week (0 - 6) (Sunday=0 or 7)
| | | | | | +-- year [optional]
| | | | | | |
* * * * * * * command to be executed
因此,如果你想每30分钟运行一次命令,你可以说其中任何一个:
0 0/30 * * * * ?
0 0,30 * * * * ?
您可以使用以下任一方法检查crontab表达式:
答案 2 :(得分:44)
<property name="cronExpression" value="0 0/30 * * * ?" />
答案 3 :(得分:7)
在网络应用程序java spring中对我有用
<?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:beans="http://www.springframework.org/schema/beans"
xmlns:task="http://www.springframework.org/schema/task"
xsi:schemaLocation="
http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/task
http://www.springframework.org/schema/task/spring-task.xsd">
<beans profile="cron">
<bean id="executorService" class="java.util.concurrent.Executors" factory-method="newFixedThreadPool">
<beans:constructor-arg value="5" />
</bean>
<task:executor id="threadPoolTaskExecutor" pool-size="5" />
<task:annotation-driven executor="executorService" />
<beans:bean id="expireCronJob" class="com.cron.ExpireCron"/>
<task:scheduler id="serverScheduler" pool-size="5"/>
<task:scheduled-tasks scheduler="serverScheduler">
<task:scheduled ref="expireCronJob" method="runTask" cron="0 0/30 * * * ?"/> <!-- every thirty minute -->
</task:scheduled-tasks>
</beans>
</beans>
这将触发例如上午10:00然后上午10:30等......
bin/solr delete -c techproducts
bin/solr start -e techproducts
我不知道为什么但这对我的本地开发和生产起作用,但是如果我做了其他改变我必须小心,因为它可能在本地和开发但不在生产上工作
答案 4 :(得分:0)
如果有人使用@Sceduled,这可能对您有用。
@Scheduled(cron = "${name-of-the-cron:0 0/30 * * * ?}")
这对我有用。