The following is only running at 6 AM on Sundays as opposed to everyday.

<bean id="documentNotificationTrigger" class="org.springframework.scheduling.quartz.CronT riggerBean">
<property name="jobDetail" ref="documentNotificationJob" />
<!-- run at 6 in the morning -->
<property name="cronExpression" value="0 0 6 * * ?" />
</bean>

Anyone see the problem?