标签:兼容 doc 异常 comm 项目 uav boot release error:
Failed to start bean ‘documentationPluginsBootstrapper‘; nested exception is java.lang.NoSuchMethodError: com.google.common.collect.FluentIterable.append(Ljava/lang/Iterable;)Lcom/google/common/collect/FluentIterable;
无法启动bean‘documentationPluginsBootstrapper‘; 嵌套异常是java.lang.NoSuchMethodError:com.google.common.collect.FluentIterable.append(Ljava / lang / Iterable;)Lcom / google / common / collect / FluentIterable;
环境:Spring Boot 2.0.3RELEASE+Swagger2 2.9.2+Swagger ui 2.9.2 + easypoi 3.2.0
网上搜索的答案是:
由于guava的兼容性导致的问题,引入
<dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <version>20.0</version> </dependency>
我打开我的maven项目展开Maven Dependencies看了下jar包版本按键盘G依次搜索,发现版本是16,guava-16.0.1.jar,16版本是不兼容的
然后搜索在启动的子项目pom.xml文件中加入
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>20.0</version>
</dependency>
根据优先原则所以版本会变成20版本
Spring Boot 2.0.3RELEASE+Swagger2 2.9.2+Swagger ui 2.9.2 + easypoi 3.2.0版本不兼容
标签:兼容 doc 异常 comm 项目 uav boot release error:
原文地址:https://www.cnblogs.com/yxgmagic/p/9516942.html