springboot 使用swagger
时间: 2023-11-11 22:00:09 浏览: 166
要在Spring Boot中使用Swagger,需要进行以下步骤:
1. 添加Swagger依赖
在pom.xml文件中添加以下依赖:
```
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger2</artifactId>
<version>2.9.2</version>
</dependency>
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger-ui</artifactId>
<version>2.9.2</version>
</dependency>
```
2. 创建Swagger配置类
创建一个Swagger配置类,用于配置Swagger的一些基本信息和接口文档的生成规则。示例代码如下:
```
@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()
.apiInfo(apiInfo());
}
private ApiInfo apiInfo() {
return new ApiInfoBuilder()
.title("API文档")
.description("这是一个示例API文档")
.version("1.0.0")
.build();
}
}
```
3. 启动应用程序
启动应用程序后,在浏览器中访问http://localhost:8080/swagger-ui.html,即可看到生成的接口文档。
阅读全文