Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I received the error below when I use Spring 3 with Quartz 2. Does anyone knows the reason?

Error:

Exception in thread "main" org.springframework.beans.factory.CannotLoadBeanClassException: Error loading class [org.springframework.scheduling.quartz.JobDetailBean] for bean with name 'job' defined in class path resource [beans.xml]: problem with class file or dependent class; nested exception is java.lang.IncompatibleClassChangeError: class org.springframework.scheduling.quartz.JobDetailBean has interface org.quartz.JobDetail as super class
    at org.springframework.beans.factory.support.AbstractBeanFactory.resolveBeanClass(AbstractBeanFactory.java:1253)

Spring config file:

<bean name="job" class="org.springframework.scheduling.quartz.JobDetailBean">
  <property name="jobClass" value="Example.ExampleJob"/>
  <property name="jobDataAsMap">
    <map>
      <entry key="timeout" value="5"/>
    </map>
  </property>
</bean>

<bean id="simpleTrigger" class="org.springframework.scheduling.quartz.SimpleTriggerBean">
  <property name="jobDetail" ref="job"/>
  <property name="startDelay" value="1000"/>
  <property name="repeatInterval" value="5000"/>
</bean>

public class ExampleJob extends QuartzJobBean {

      private int timeout;

      /**
       * Setter called after the ExampleJob is instantiated
       * with the value from the JobDetailBean (5)
       */ 
      public void setTimeout(int timeout) {
        this.timeout = timeout;
      }

    @Override
    protected void executeInternal(JobExecutionContext ctx)
            throws JobExecutionException {
        *****
    }

}
share|improve this question

3 Answers

up vote 6 down vote accepted

Last I checked, Spring doesn't have support for Quartz 2. Either have a look to see if the most recent Spring builds have added said support, or try downgrading to Quartz 1.8.x.

share|improve this answer
3  
Your are right. Quartz 2 support is added in 3.1. Check static.springsource.org/spring/docs/3.1.0.RC1/changelog.txt – Adi Nov 23 '11 at 17:45
good to know...thanks! – stevevls Nov 23 '11 at 19:05
1  
Why must you torment me so Spring? I swear I would be about as productive making my own implementation than using Spring's and running into delightful undocumented issues like these. – Joseph Lust Nov 28 '11 at 20:38

If you use Spring 3.1,

Replce the SimpleTriggerBean with SimpleTriggerFactoryBean

In the 3.1 release, Spring has created Factory classes for crontrigger and simpletrigger

share|improve this answer

According to the 3.1.0.RC1 Change Log, Spring 3.1 has support for Quartz 2.x.

For every {Type}TriggerBean there is now a {Type}TriggerBeanFactory which can be used to setup triggers. In your case this would be SimpleTriggerFactoryBean

Excerpt

NOTE: This FactoryBean works against both Quartz 1.x and Quartz 2.0/2.1, in contrast to the older SimpleTriggerBean class.

Sidenote

You might also need to add the org.springframework.transaction dependency, depending on which type of trigger you are using:

<dependency>
    <groupId>org.springframework</groupId>
    <artifactId>spring-tx</artifactId>
    <version>3.1.2.RELEASE</version>
</dependency>

We needed it for migration to Quartz 2 in a configuration using CronTriggerFactoryBean triggers.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.