jobStore « Job « Spring Q&A





1. Quartz JobStore with Spring Framework    stackoverflow.com

I am implementing Quartz Job Store on Oracle DB using Spring Framework. My ApplicationContext.xml is below

<bean id="driverJob" class="org.springframework.scheduling.quartz.JobDetailBean">
 <property name="jobClass" value="BatchFileCollector" />
</bean>

<bean id="ranchTrigger" class="org.springframework.scheduling.quartz.SimpleTriggerBean">
 <property name="jobDetail" ref="driverJob" />
 <property name="startDelay" value="2000" ...

2. Get a Quartz JobStore implementation in Spring    stackoverflow.com

Is there any way to get the JobStore implementation created by Spring's SchedulerFactoryBean in a Spring application context ? I'm trying to implement a GUI for the JobStore in my application ...