Hi, I'm getting a strange error when I try to upgrade my spring jar from 2.0-m2 to the current production release 2.06. I have the following bean definition:
<bean id="PASportJob" class="org.springframework.scheduling.quartz.Metho dInvokingJobDetailFactoryBean">
<property name="targetObject"><ref bean="PASport_ConfigBean"/></property>
<property name="targetMethod"><value>execute</value></property>
<property name="concurrent"><value>false</value></property>
</bean>
Which gives the following error.
Unexpected failure during bean definition parsing; nested exception is java.lang.NoSuchMethodError: org.springframework.util.ClassUtils.getConstructor IfAvailable(Ljava/lang/Class;[Ljava/lang/ClassLjava/lang/reflect/Constructor
I cant see any reason why it should be any diffrerent, hope someone can help.


Ljava/lang/reflect/Constructor
Reply With Quote