系列文章目录
该博文主要用于记录由于Guava版本冲突而导致项目启动失败的问题,排查该问题,前后花了一个小时,特此记录,方便后续排坑。
文章目录
一、问题现状
最近为了方便调用公司某一个请求时,搭建一套Feign + Hystrix环境。环境搭建完成后,启动直接报错。报错信息如下
Description:
An attempt was made to call the method com.google.common.collect.FluentIterable.append(Ljava/lang/Iterable;)Lcom/google/common/collect/FluentIterable; but it does not exist. Its class, com.google.common.collect.FluentIterable, is available from the following locations:
jar:file:/I:/java/maven%20repository/com/google/guava/guava/15.0/guava-15.0.jar!/com/google/common/collect/FluentIterable.class
It was loaded from the following location:
file:/I:/java/maven%20repository/com/google/guava/guava/15.0/guava-15.0.jar
Action:
Correct the classpath of your application so that it contains a single, compatible version of com.google.common.collect.FluentIterable
然后开启了漫长排坑之路。
二、问题原因
经过漫长分析、定位,发现netfix-hystrix使用低版本的Guava依赖,而之前为了测试方便,引入了Swagger-ui依赖,碰巧,swagger-ui使用了一个高版本guava。从而在启动的时候,出现了guava版本冲突问题。
解决措施
问题原因找到了之后,其实解决方式特别简单,移除低版本的guava依赖即可。
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-netflix-hystrix</artifactId>
<version>1.4.5.RELEASE</version>
<exclusions>
<exclusion>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</exclusion>
</exclusions>
</dependency>