ClassNotFoundException: org.springframework.context.event.GenericApplication
在配置spring cloud eureka-server出现了java.lang.ClassNotFoundException: org.springframework.context.event.GenericApplicationListener 经一个网友的博客,从http://stackoverflow.com/questions/31489947/noclas
在配置spring cloud eureka-server出现了
java.lang.ClassNotFoundException: org.springframework.context.event.GenericApplicationListener
经一个网友的博客,从http://stackoverflow.com/questions/31489947/noclassdeffounderror-genericapplicationlistener-when-switching-from-spring-bo中看到对于这个类是spring 4.2开始加的,原来是spring cloud spring boot依赖的spring core版本较低产生的,如何解决这个问题,这个里面其实也有了解释我用的是spring boot parent这个来控制spring boot的版本号,spring boot 到1.3.8就解决了,附上我的spring boots parent的配置:
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.4.2.RELEASE</version>
</parent>
如果你是使用ide编辑器,记得重新编译一下,这个问题就没了,我是版本改了,发现问题依旧,我用的是idea ,然后我rebuild了一下,这个问题就解决了。
更多推荐
所有评论(0)