11

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"
Eu Vid
  • 653
  • 1
  • 8
  • 21

2 Answers2

16

it seems to be in spring-context-support : http://search.maven.org/#search%7Cga%7C1%7Cfc%3Aorg.springframework.scheduling.quartz.JobDetailBean

Anthony Dahanne
  • 4,823
  • 2
  • 40
  • 39
1

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.

Paizo
  • 3,986
  • 30
  • 45
Swathy
  • 11
  • 3