I have in my build path both quartz 1.8.3.jar and Spring 3.0.6 jars, but the package that appears in all tutorials for spring + quartz scheduling isn't available. Where i can find it?
"org.springframework.scheduling.quartz.JobDetailBean"
I have in my build path both quartz 1.8.3.jar and Spring 3.0.6 jars, but the package that appears in all tutorials for spring + quartz scheduling isn't available. Where i can find it?
"org.springframework.scheduling.quartz.JobDetailBean"
it seems to be in spring-context-support : http://search.maven.org/#search%7Cga%7C1%7Cfc%3Aorg.springframework.scheduling.quartz.JobDetailBean
Quartz scheduling files are available in Spring context support 4.3.6 jar
. There is a change in the classes. Few classes have been become deprecated.
The deprecated classes in spring context support are: JobDetailBean and CronTriggerBean.
Replace org.springframework.scheduling.quartz.JobDetailBean
in your current spring / program file to org.springframework.scheduling.quartz.JobDetailFactoryBean
.