springboot整合swagger
时间: 2023-04-29 21:04:48 浏览: 175
Spring Boot 整合 Swagger 可以通过添加 maven 依赖和配置来实现。
在 pom.xml 文件中添加如下依赖:
```
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger2</artifactId>
<version>3.0.0</version>
</dependency>
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger-ui</artifactId>
<version>3.0.0</version>
</dependency>
```
在启动类中加入如下配置:
```
@Configuration
@EnableSwagger2
public class Swagger2 {
@Bean
public Docket createRestApi() {
return new Docket(DocumentationType.SWAGGER_2)
.apiInfo(apiInfo())
.select()
.apis(RequestHandlerSelectors.basePackage("com.controller"))
.paths(PathSelectors.any())
.build();
}
private ApiInfo apiInfo() {
return new ApiInfoBuilder()
.title("API文档")
.description("API文档")
.version("1.0")
.build();
}
}
```
这样,就可以在项目启动后访问 `http://localhost:8080/swagger-ui.html` 来查看 API 文档了。
阅读全文