5

I am new to Spring, and I need to get a project to run successfully with Eclipse on JDK7. The project was previously running on JDK6.

I have all the source files, and jars that belonged to the original project in place. But when I try to run it, I get the following exception:

org.springframework.beans.factory.BeanDefinitionStoreException: Failed to read candidate component class: file [C:\Users\e\workspace\.metadata\.plugins\org.eclipse.wst.server.core\tmp1\wtpwebapps\DMControl\WEB-INF\classes\com\...\...\...\MyClass.class]; nested exception is java.lang.IncompatibleClassChangeError: org/springframework/core/type/classreading/AnnotationMetadataReadingVisitor

The only clue I have is that the first time I tried to run this, I got an error saying that I don't have the

org.springframework.core.io.support.SpringFactoriesLoader. 

I looked in my spring-core-3.1.2.RELEASE.jar and indeed the SpringFactoriesLoader wasn't there. Checking the current release, I found out that the missing class is indeed in the spring-core-3.2.2.RELEASE.jar.

So I changed the spring jars to the latest version. But now I get the exception in the title of this question.

Any idea?

The full stacktrace:

org.springframework.beans.factory.BeanDefinitionStoreException: Failed to read candidate component class: file [C:\Users\e\workspace\.metadata\.plugins\org.eclipse.wst.server.core\tmp1\wtpwebapps\FTAdControl\WEB-INF\classes\com\fashiontraffic\adcontrol\health\restwebservices\HealthWSImpl.class]; nested exception is java.lang.IncompatibleClassChangeError: org/springframework/core/type/classreading/AnnotationMetadataReadingVisitor
at org.springframework.context.annotation.ClassPathScanningCandidateComponentProvider.findCandidateComponents(ClassPathScanningCandidateComponentProvider.java:281)
at org.springframework.context.annotation.ClassPathBeanDefinitionScanner.doScan(ClassPathBeanDefinitionScanner.java:242)
at org.springframework.context.annotation.ComponentScanBeanDefinitionParser.parse(ComponentScanBeanDefinitionParser.java:84)
at org.springframework.beans.factory.xml.NamespaceHandlerSupport.parse(NamespaceHandlerSupport.java:73)
at org.springframework.beans.factory.xml.BeanDefinitionParserDelegate.parseCustomElement(BeanDefinitionParserDelegate.java:1438)
at org.springframework.beans.factory.xml.BeanDefinitionParserDelegate.parseCustomElement(BeanDefinitionParserDelegate.java:1428)
at org.springframework.beans.factory.xml.DefaultBeanDefinitionDocumentReader.parseBeanDefinitions(DefaultBeanDefinitionDocumentReader.java:185)
at org.springframework.beans.factory.xml.DefaultBeanDefinitionDocumentReader.doRegisterBeanDefinitions(DefaultBeanDefinitionDocumentReader.java:139)
at org.springframework.beans.factory.xml.DefaultBeanDefinitionDocumentReader.registerBeanDefinitions(DefaultBeanDefinitionDocumentReader.java:108)
at org.springframework.beans.factory.xml.XmlBeanDefinitionReader.registerBeanDefinitions(XmlBeanDefinitionReader.java:493)
at org.springframework.beans.factory.xml.XmlBeanDefinitionReader.doLoadBeanDefinitions(XmlBeanDefinitionReader.java:390)
at org.springframework.beans.factory.xml.XmlBeanDefinitionReader.loadBeanDefinitions(XmlBeanDefinitionReader.java:334)
at org.springframework.beans.factory.xml.XmlBeanDefinitionReader.loadBeanDefinitions(XmlBeanDefinitionReader.java:302)
at org.springframework.beans.factory.support.AbstractBeanDefinitionReader.loadBeanDefinitions(AbstractBeanDefinitionReader.java:174)
at org.springframework.beans.factory.support.AbstractBeanDefinitionReader.loadBeanDefinitions(AbstractBeanDefinitionReader.java:209)
at org.springframework.beans.factory.support.AbstractBeanDefinitionReader.loadBeanDefinitions(AbstractBeanDefinitionReader.java:180)
at org.springframework.web.context.support.XmlWebApplicationContext.loadBeanDefinitions(XmlWebApplicationContext.java:125)
at org.springframework.web.context.support.XmlWebApplicationContext.loadBeanDefinitions(XmlWebApplicationContext.java:94)
at org.springframework.context.support.AbstractRefreshableApplicationContext.refreshBeanFactory(AbstractRefreshableApplicationContext.java:130)
at org.springframework.context.support.AbstractApplicationContext.obtainFreshBeanFactory(AbstractApplicationContext.java:537)
at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:451)
at org.springframework.web.servlet.FrameworkServlet.configureAndRefreshWebApplicationContext(FrameworkServlet.java:631)
at org.springframework.web.servlet.FrameworkServlet.createWebApplicationContext(FrameworkServlet.java:588)
at org.springframework.web.servlet.FrameworkServlet.createWebApplicationContext(FrameworkServlet.java:645)
at org.springframework.web.servlet.FrameworkServlet.initWebApplicationContext(FrameworkServlet.java:508)
at org.springframework.web.servlet.FrameworkServlet.initServletBean(FrameworkServlet.java:449)
at org.springframework.web.servlet.HttpServletBean.init(HttpServletBean.java:133)
at javax.servlet.GenericServlet.init(GenericServlet.java:242)
at org.apache.catalina.core.StandardWrapper.initServlet(StandardWrapper.java:1190)
at org.apache.catalina.core.StandardWrapper.loadServlet(StandardWrapper.java:1103)
at org.apache.catalina.core.StandardWrapper.load(StandardWrapper.java:1010)
at org.apache.catalina.core.StandardContext.loadOnStartup(StandardContext.java:4957)
at org.apache.catalina.core.StandardContext$3.call(StandardContext.java:5284)
at org.apache.catalina.core.StandardContext$3.call(StandardContext.java:5279)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)

Caused by: java.lang.IncompatibleClassChangeError: org/springframework/core/type/classreading/AnnotationMetadataReadingVisitor
at org.springframework.core.type.classreading.SimpleMetadataReader.<init>(SimpleMetadataReader.java:63)
at org.springframework.core.type.classreading.SimpleMetadataReaderFactory.getMetadataReader(SimpleMetadataReaderFactory.java:80)
at org.springframework.core.type.classreading.CachingMetadataReaderFactory.getMetadataReader(CachingMetadataReaderFactory.java:102)
at org.springframework.context.annotation.ClassPathScanningCandidateComponentProvider.findCandidateComponents(ClassPathScanningCandidateComponentProvider.java:257)
... 38 more
10
  • Read : stackoverflow.com/questions/1980452/… Clean and build. Or get the spring libs again remove everything from the class-path properly add them and try again. Commented Mar 17, 2013 at 16:25
  • I forgot to explicitly tell you, get all the dependencies of the spring libraries and make sure they are the proper versions for that spring release. Commented Mar 17, 2013 at 16:32
  • Thanks, Thihara, but cleaning and building doesn't do it. And I have about 50 other related jars in my lib, so I guess I need to know which one can be effected by the actual AnnotationMetadataReadingVisitor being changed. Commented Mar 17, 2013 at 17:02
  • You changed the entire spring library, so you should change the dependencies accordingly otherwise the said error may occur... You can get the dependent binary distribution and try changing the libraries in there only.. That's around 6 i think... Commented Mar 18, 2013 at 4:23
  • Do you where can I find the list of these? The ones in the list that can be found in the link you gave me above is already in my classpath. And from the exception it looks like I may have 2 versions of the AnnotationMetadataReadingVisitor class? Commented Mar 18, 2013 at 7:50

4 Answers 4

10

@Eddy, it sounds like you have jars from Spring 3.1 and 3.2 on your classpath, which isn't always bad but sometimes they don't play nicely together.

I had the same error on my Spring 3.2.2 project when I added spring-hateoas 0.4 which pulled in spring-webmvc 3.1.x and all of it's Spring 3.1 dependencies.

I excluded the Spring 3.1 dependencies, and all was well. Hope that helps.

Sign up to request clarification or add additional context in comments.

2 Comments

Thanks @10gritSandpaper. I already went back to the previous version of Spring and it worked for me.
On behalf of amirhd: Make sure run a maven clean before redeploying the solution.
3

This is due to the incompatible of the version of the jars. You can find more details at this blog.

1 Comment

Where at this blog? Please do not post a link only.
0
<org.springframework-version>**4.2.1.RELEASE**</org.springframework-version> 

change the release version to the latest in the pom.xml (properties attribute)

then reference that property in all your springframework dependencies.

this is what worked for me!!

Comments

0

In my case the problem was because I was using activemq-all library that contains an old Spring version (currently I'm using Spring 4.2.4.RELEASE) so I changed it with activemq-core library and the problem was solved.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.