SpringBoot中怎么集成Swagger文档
在SpringBoot中集成Swagger文档,可以通过以下步骤:
- 添加Swagger依赖: 在项目的pom.xml文件中添加Swagger的依赖:
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-boot-starter</artifactId>
<version>3.0.0</version>
</dependency>
- 配置Swagger: 在SpringBoot的配置类中添加Swagger的配置,例如:
@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应用程序后,访问http://localhost:8080/swagger-ui/index.html即可查看Swagger文档。
通过以上步骤,就可以在SpringBoot应用中集成Swagger文档。Swagger可以帮助开发人员更方便地查看和测试API接口。
相关问答