Hi,
In my application some jobs are scheduled using spring on top of Quartz. So, we are giving the scheduled time in the configuration file itself. So, whenever there is a need to change the schedule time, we are manually changing that xml file and redeploying the application once again and restarting the server. FYI, the application is running on tomcat web server.
But now we want to make it dynamically where we can cange the schedule timings.
========================
<bean id="readIVAVfromCLSJobInvokerCronTrigger" class="org.springframework.scheduling.quartz.CronT riggerBean">
<property name="jobDetail" ref="readIVAVfromCLSJobInvoker" />
<!-- run every month, any day of the month, from monday till saturday, 17:15 -->
<property name="cronExpression" value="0 30 12-18 ? * MON-SAT" />
</bean>
==========================
Can anyone suggest me the possible solutions for this.


