在SpringBoot中集成Swagger文檔,可以通過以下步驟:
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-boot-starter</artifactId>
<version>3.0.0</version>
</dependency>
@Configuration
@EnableSwagger2
public class SwaggerConfig {
@Bean
public Docket api() {
return new Docket(DocumentationType.SWAGGER_2)
.select()
.apis(RequestHandlerSelectors.basePackage("com.example.controller"))
.paths(PathSelectors.any())
.build();
}
}
通過以上步驟,就可以在SpringBoot應用中集成Swagger文檔。Swagger可以幫助開發人員更方便地查看和測試API接口。