我正在构建几个运行的crons,我需要在服务器启动一段时间后运行一个cron。
help call
我需要每15秒运行一次这个cron,它确实如此。但是我需要在服务器启动45秒后运行此cron,而不是立即运行。
以下是我的xsd,
<task:scheduled ref="myCron"
method="processData" cron="0/15 * * * * ?" initial-delay="45000"></task:scheduled>
异常
<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:task="http://www.springframework.org/schema/task"
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.0.xsd
http://www.springframework.org/schema/task
http://www.springframework.org/schema/task/spring-task-3.2.xsd"
default-lazy-init="false">
答案 0 :(得分:2)
从ScheduledTasksBeanDefinitionParser
的{{3}},您可以看到cron
和initial-delay
不兼容:
if (hasInitialDelayAttribute && (hasCronAttribute || hasTriggerAttribute)) {
parserContext.getReaderContext().error(
"the 'initial-delay' attribute may not be used with cron and trigger tasks", taskElement);
continue; // with the possible next task element
}
您可能希望使用 fixed-delay 实现,例如:
<task:scheduled ref="beanA" method="methodA" fixed-delay="5000" initial-delay="1000"/>
请参阅 33.3.2触发器实现
部分中的Spring code