原因:java.lang.ClassNotFoundException:springfox.documentation.common.ClassPresentInClassPathCondition

snz8szmq  于 2023-05-05  发布在  Java
关注(0)|答案(2)|浏览(685)

我正在尝试将Swagger添加到我的项目https://www.baeldung.com/swagger-2-documentation-for-spring-rest-api
我在上面的教程中得到了4.3段,当我运行我的应用程序时,我得到了一些错误。
我在pom.xml中添加了以下内容:

<dependency>
  <groupId>io.springfox</groupId>
  <artifactId>springfox-swagger2</artifactId>
  <version>2.9.2</version>
</dependency>

<dependency>
  <groupId>io.springfox</groupId>
  <artifactId>springfox-boot-starter</artifactId>
  <version>3.0.0</version>
</dependency>

<dependency>
  <groupId>org.springframework.boot</groupId>
  <artifactId>spring-boot-starter-parent</artifactId>
  <version>2.4.0</version>
</dependency>

另外,我添加了config class:

@Configuration
public class SwaggerConfig {
@Bean
public Docket api() {
    return new Docket(DocumentationType.SWAGGER_2)
            .select()
            .apis(RequestHandlerSelectors.any())
            .paths(PathSelectors.any())
            .build();
}
}

当我运行我的项目时,我得到:

t9aqgxwy

t9aqgxwy1#

我从pom.xml中删除了以下依赖项

<dependency>
  <groupId>io.springfox</groupId>
  <artifactId>springfox-boot-starter</artifactId>
  <version>3.0.0</version>
</dependency>

对我来说,它起作用了

o2rvlv0m

o2rvlv0m2#

我在升级spring-boot v2.1.1到v3.0.5时遇到了这个错误。因此,我将springfox-swagger2springfox-swagger-ui都升级到了相同的3.0.0版本

相关问题