This snippet of configuration data is making my deployment crash:
<bean id="cronReportTrigger" class="org.springframework.scheduling.quartz.CronT riggerBean">
<property name="jobDetail">
<ref bean="sweepTarget"/>
</property>
<property name="cronExpression">
<value>0 5 * * * MON–FRI
</value>
</property>
</bean>
It's obviously the value in the cronExpression which the XML parser bombs on. I tried it with:
a CDATA section and it still bombed. Anybody run into this and have a fix.
Thanks


Reply With Quote