服务器之家

服务器之家 > 正文

关于springboot集成swagger3时spring-plugin-core报错的问题

时间:2021-12-24 13:03     来源/作者:weixin_44509615

springboot集成knife4j的时候3.0.2版本出现了以下问题:

An attempt was made to call a method that does not exist. The attempt was made from the following location:
 
    springfox.documentation.schema.plugins.SchemaPluginsManager.viewProvider(SchemaPluginsManager.java:95)
 
The following method did not exist:
 
    org.springframework.plugin.core.PluginRegistry.getPluginFor(Ljava/lang/Object;)Ljava/util/Optional;
 
The method's class, org.springframework.plugin.core.PluginRegistry, is available from the following locations:
 
 jar:file:/Users/zhangyanping/Documents/software/maven/maven_repository/org/springframework/plugin/spring-plugin-core/1.2.0.RELEASE/spring-plugin-core-1.2.0.RELEASE.jar!/org/springframework/plugin/core/PluginRegistry.class
 
It was loaded from the following location:
    file:/Users/zhangyanping/Documents/software/maven/maven_repository/org/springframework/plugin/spring-plugin-core/1.2.0.RELEASE/spring-plugin-core-1.2.0.RELEASE.jar
 
Action:
 
Correct the classpath of your application so that it contains a single, compatible version of org.springframework.plugin.core.PluginRegistry

我自己的依赖如下:

?
1
2
3
4
5
<dependency>
           <groupId>com.github.xiaoymin</groupId>
           <artifactId>knife4j-spring-boot-starter</artifactId>
           <version>3.0.2</version>
       </dependency>

 解决办法:将依赖中的spring-plugin-core去除,并添加高版本。解决之后依赖如下:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<dependency>
           <groupId>com.github.xiaoymin</groupId>
           <artifactId>knife4j-spring-boot-starter</artifactId>
           <version>3.0.2</version>
           <exclusions>
               <exclusion>
                   <groupId>org.springframework.plugin</groupId>
                   <artifactId>spring-plugin-core</artifactId>
               </exclusion>
           </exclusions>
       </dependency>
   </dependencies>
 
        <dependency>
           <groupId>org.springframework.plugin</groupId>
           <artifactId>spring-plugin-core</artifactId>
           <version>2.0.0.RELEASE</version>
       </dependency>

至此,问题就解决了

到此这篇关于关于springboot集成swagger3时spring-plugin-core报错的问题的文章就介绍到这了,更多相关springboot整合swagger3报错内容请搜索服务器之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持服务器之家!

原文链接:https://blog.csdn.net/weixin_44509615/article/details/120173001

标签:

相关文章

热门资讯

yue是什么意思 网络流行语yue了是什么梗
yue是什么意思 网络流行语yue了是什么梗 2020-10-11
背刺什么意思 网络词语背刺是什么梗
背刺什么意思 网络词语背刺是什么梗 2020-05-22
2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全
2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全 2019-12-26
蜘蛛侠3英雄无归3正片免费播放 蜘蛛侠3在线观看免费高清完整
蜘蛛侠3英雄无归3正片免费播放 蜘蛛侠3在线观看免费高清完整 2021-08-24
2021年耽改剧名单 2021要播出的59部耽改剧列表
2021年耽改剧名单 2021要播出的59部耽改剧列表 2021-03-05
返回顶部