Caused by: java.lang.ClassNotFoundException: springfox.documentation.common.ClassPresentInClassPathC

2022/4/19 20:13:05

本文主要是介绍Caused by: java.lang.ClassNotFoundException: springfox.documentation.common.ClassPresentInClassPathC,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

因为swagger版本与knife4j不兼容

<dependency>
            <groupId>com.github.xiaoymin</groupId>
            <artifactId>knife4j-spring-boot-starter</artifactId>
            <version>3.0.3</version>
        </dependency>

3.0.3版本太高可以降成2.0.4或2.0.9都行

<dependency>
            <groupId>com.github.xiaoymin</groupId>
            <artifactId>knife4j-spring-boot-starter</artifactId>
            <version>2.0.4</version>
        </dependency>


这篇关于Caused by: java.lang.ClassNotFoundException: springfox.documentation.common.ClassPresentInClassPathC的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程