在Spring Boot中使用Swagger生成API文档主要分为以下几个步骤:
pom.xml
文件中添加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.demo.controller"))
.paths(PathSelectors.any())
.build();
}
}
http://localhost:8080/swagger-ui/index.html
即可查看生成的API文档。通过以上步骤,就可以在Spring Boot应用中集成Swagger并生成API文档了。Swagger还提供了很多自定义配置选项,可以根据实际需求进行配置。