我有一个web应用程序,它必须在每个月的第一天做一些事情。
这是一个分为4个项目的GWT应用程序(如果有关系的话),我使用Maven(它更新了我的pom.xml)添加了这些jar:
opensymphony quartz 1.6.3commons-collections
因为我已经在使用Spring,所以我遵循了这个教程(法语教程)
并将教程中所写的内容添加到我的application-context.xml文件中。
在编译时,没有问题,但在运行时,我有这个错误:
com.google.gwt.user.client.rpc.StatusCodeException: Error 500 Error creating bean with name 'schedulerFactory' defined in class path resource [application-context.xml]: Cannot resolve reference to bean 'cronTrigger' while setting bean property 'triggers' with key [0];nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'cronTrigger' defined in class path resource [application-context.xml]: Error setting property values;nested exception is org.springframework.beans.PropertyBatchUpdateException;nested PropertyAccessExceptions (1) are: PropertyAccessException 1: org.springframework.beans.MethodInvocationException: Property 'cronExpression' threw exception;nested exception is java.text.ParseException: Unexpected end of expression.
它是从哪里来的?
application-context.xml的一部分:
<!-- Configuration du crontrigger -->
<bean id="schedulerFactory" class="org.springframework.scheduling.quartz.SchedulerFactoryBean">
<property name="triggers">
<list>
<ref bean="cronTrigger" />
</list>
</property>
</bean>
<bean id="cronTrigger" class="org.springframework.scheduling.quartz.CronTriggerBean">
<property name="jobDetail">
<ref local="exampleJob" />
</property>
<!-- run every day at 6AM -->
<property name="cronExpression" value="0 0 6 * * ?" />
</bean>
<bean id="exampleJob" class="org.springframework.scheduling.quartz.JobDetailBean">
<property name="jobClass" value="fr.web.utils.ExampleJob" />
<property name="jobDataAsMap">
<map>
<entry key="timeout" value="5" />
</map>
</property>
</bean>
问题是您在Scheduler的触发器cronTrigger
中给出了引用,您没有在XML文件中声明。
为更详细的答案提供XML
您的cronExpression似乎无效0 0 6 * * ?
改成0 0 6 * * ?
注意?
前的最后一个空格