1) 集成步驟
- 添加依賴
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger-ui</artifactId>
<version>2.8.0</version>
</dependency>
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger2</artifactId>
<version>2.8.0</version>
</dependency>
- 基礎(chǔ)配置類
package com.imooc.springboot.config;
import io.swagger.annotations.Api;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import springfox.documentation.builders.ApiInfoBuilder;
import springfox.documentation.builders.PathSelectors;
import springfox.documentation.builders.RequestHandlerSelectors;
import springfox.documentation.service.ApiInfo;
import springfox.documentation.spi.DocumentationType;
import springfox.documentation.spring.web.plugins.Docket;
import springfox.documentation.swagger2.annotations.EnableSwagger2;
/**
* @author hahadasheng
* @since 2020/8/25
*/
@Configuration
@EnableSwagger2
public class SwaggerConfig {
@Bean
public Docket createRestApi() {
return new Docket(DocumentationType.SWAGGER_2)
.apiInfo(apiInfo())
//.host("host") // 設(shè)置host, 如果前端文檔有代理托嚣,在SwaggerFilter中進(jìn)行過濾并刪除這個屬性谱煤,否則接口無法調(diào)用
.select()
/*
下面這行代碼是告訴 Swagger 要掃描有 @Api 注解的類痢毒,
可以將 Api.class 替換成 ApiOperation.class 掃描帶有 @ApiOperation 注解的方法瘩缆。
當(dāng)然還可以使用 basePackage() 方法配置 Swagger 需要掃描的包路徑。
*/
.apis(RequestHandlerSelectors.withClassAnnotation(Api.class))
.paths(PathSelectors.any())
.build();
}
private ApiInfo apiInfo() {
return new ApiInfoBuilder()
.title("Spring Boot")
.description("RESTFul接口文檔說明")
.version("1.0")
.build();
}
}
- 使用接口方法
package com.imooc.springboot.controller;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;
import io.swagger.annotations.ApiParam;
import org.springframework.util.StringUtils;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;
/**
* @author hahadasheng
* @since 2020/8/24
*/
@Api
@RestController
public class HelloController {
@ApiOperation("Hello Spring Boot 方法")
@GetMapping("/")
public String hello(@RequestParam(required = false) @ApiParam("名字")
String name) {
if (!StringUtils.isEmpty(name)) {
return String.format("Hello %s", name);
}
return "Hello Spring Boot";
}
}
- 訪問
http://localhost:8080/swagger-ui.html
http://localhost:8080/v2/api-docs
2) 常用注解
注解 | 作用域 | 說明 |
---|---|---|
@Api |
類 | 標(biāo)識類為Swagger資源(Controller) |
@ApiModel |
類 | 描述接口實體類(通常為參數(shù)或返回值) |
@ApiOperation |
方法 | 用于描述接口方法 |
@ApiModelProperty |
屬性/方法 | 描述接口實體屬性 |
@ApiParam |
參數(shù) | 描述接口參數(shù) |
3) 避坑
- 目中有使用
@RestControllerAdvice
注解進(jìn)行全局異常處理窥摄,導(dǎo)致 Swagger 失效
在全局異常處理類的 @RestControllerAdvice 注解中指定 Controller 的包名即可:
@RestControllerAdvice(basePackages = "com.imooc.springboot.controller")