SpringCloud由于各个微服务使用版本不同Feign出现的坑

为什么80%的码农都做不了架构师?>>>   hot3.png

通过Feign调用其他微服务,启动时报如下错误:

java.lang.IllegalStateException: ApplicationEventMulticaster not initialized - call 'refresh' before multicasting events via the context: org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1992eaf4: startup date [Mon Oct 22 15:22:11 CST 2018]; parent: org.springframework.context.annotation.AnnotationConfigApplicationContext@428640fa

开始以为是引入jar feign和openfeign的问题但发现不是

通过排查发现是版本问题,报错的版本是:

2.0.0.M3<\boot-version>	
Finchley.M2

改成一下版本报错解除:

2.0.1.RELEASE
Finchley.SR1

总结:在使用SpringCloud时,遇到一些奇葩问题,实在找不出原因时,不妨试试换个版本。

转载于:https://my.oschina.net/linwl/blog/2250721

你可能感兴趣的:(SpringCloud由于各个微服务使用版本不同Feign出现的坑)