我是靠谱客的博主 清新鼠标,最近开发中收集的这篇文章主要介绍使用swagger3是项目无法启动 或 无法获取api信息解决方法,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

报错

Correct the classpath of your application so that it contains a single, compatible version of org.springframework.plugin.core.PluginRegistry

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

 <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>

最后

以上就是清新鼠标为你收集整理的使用swagger3是项目无法启动 或 无法获取api信息解决方法的全部内容,希望文章能够帮你解决使用swagger3是项目无法启动 或 无法获取api信息解决方法所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(44)

评论列表共有 0 条评论

立即
投稿
返回
顶部