I am getting this validation error
No setter found for property 'cronExpression' in class 'org.springframework.scheduling.quartz.CronTrigger Bean'
For this bean definition:
<bean id="sendMailingsJob" class="org.springframework.scheduling.quartz.CronT riggerBean">
<property name="jobDetail">
<bean class="org.springframework.scheduling.quartz.Metho dInvokingJobDetailFactoryBean">
<property name="targetObject"><ref bean="mailingSender" /></property>
<property name="targetMethod"><value>sendPendingMailsBatch</value></property>
<property name="concurrent"><value>false</value></property>
</bean>
</property>
<property name="cronExpression">
<!-- run once an hour at quarter past the hour -->
<value>0 15 * * * ?</value>
</property>
</bean>
I have checked that org.springframework.scheduling.quartz.CronTriggerB ean does have a setCronExpression property, and this works when loaded in spring.
Can anyone suggest what is happening.
I am using Spring IDE 1.2.3 and spring 1.2.3


Reply With Quote
