我正在尝试将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();
}
}
当我运行我的项目时,我得到:
2条答案
按热度按时间t9aqgxwy1#
我从pom.xml中删除了以下依赖项
对我来说,它起作用了
o2rvlv0m2#
我在升级spring-boot v2.1.1到v3.0.5时遇到了这个错误。因此,我将
springfox-swagger2
和springfox-swagger-ui
都升级到了相同的3.0.0版本