各位在開發的過程當中確定遇到過被接口文檔折磨的經歷,因爲 RESTful 接口的輕量化以及低耦合性,咱們在修改接口後文檔更新不及時,致使接口的調用方(不管是前端仍是後端)常常抱怨接口與文檔不一致。程序員的特色是特別不喜歡寫文檔,可是又同時特別不喜歡別人不寫文檔。因此 API 文檔工具這時就應運而生了,本篇文章咱們將會介紹 API 文檔工具 Swagger2 。html
既然 Swagger2 是一個 API 文檔工具,咱們就在代碼中看一下這個文檔工具在 Spring Boot 中是如何使用的吧。前端
代碼清單:spring-boot-swagger/pom.xml***java
<!-- swagger工具包 -->
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger2</artifactId>
<version>${swagger.version}</version>
</dependency>
<!-- https://mvnrepository.com/artifact/io.springfox/springfox-swagger-ui -->
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger-ui</artifactId>
<version>${swagger.version}</version>
</dependency>複製代碼
這裏選用的版本是 2.9.2
,同時也是目前最新的一個版本。git
代碼清單:spring-boot-swagger/src/main/java/com/springboot/springbootswagger/config/SwaggerConfig.java***程序員
@Configuration
@EnableSwagger2
public class SwaggerConfig {
@Value("${swagger.show}")
private boolean swaggerShow;
@Bean
public Docket swaggerSpringMvcPlugin() {
return new Docket(DocumentationType.SWAGGER_2)
.enable(swaggerShow)
.apiInfo(apiInfo())
.select()
.apis(RequestHandlerSelectors.basePackage("com.springboot.springbootswagger"))
.paths(PathSelectors.any())
.build();
}
private ApiInfo apiInfo() {
return new ApiInfoBuilder()
.title("Swagger2 演示接口RESTful APIs")
.version("1.0")
.build();
}
}複製代碼
因爲 Swagger 是一個 API 文檔工具,咱們確定不能在生產環境中開啓,因此筆者這裏在配置中增長了 swagger.show
,在不一樣環境的配置文件中配置不一樣的值,或者若是有配置中心,這個配置能夠添加到配置中心中,筆者這裏示例簡單起見就添加在 application 配置文件中了。這樣,咱們就能夠優雅的開啓或者關閉 Swagger 的功能。github
代碼清單:spring-boot-swagger/src/main/java/com/springboot/springbootswagger/model/User.java***spring
@Data
@AllArgsConstructor
@NoArgsConstructor
@ApiModel(value = "用戶演示類", description = "請求參數類")
public class User {
@ApiModelProperty(example = "1", notes = "用戶ID")
private Long id;
@ApiModelProperty(example = "geekdigging", notes = "用戶名")
private String nickName;
@ApiModelProperty(example = "1570689455000", notes = "建立時間")
private Date createDate;
@ApiModelProperty(example = "18", notes = "用戶年齡")
private Integer age;
}複製代碼
Swagger 註解詳細說明:後端
API | 做用範圍 | 使用位置 |
---|---|---|
@ApiModel | 描述返回對象的意義 | 用在返回對象類上 |
@ApiModelProperty | 對象屬性 | 用在出入參數對象的字段上 |
@Api | 協議集描述 | 用於 controller 類上 |
@ApiOperation | 協議描述 | 用在 controller 的方法上 |
@ApiResponses | Response集 | 用在 controller 的方法上 |
@ApiResponse | Response | 用在 @ApiResponses 裏邊 |
@ApiImplicitParams | 非對象參數集 | 用在 controller 的方法上 |
@ApiImplicitParam | 非對象參數描述 | 用在 @ApiImplicitParams 的方法裏邊 |
代碼清單:spring-boot-swagger/src/main/java/com/springboot/springbootswagger/controller/UserController.java***api
@Api(value = "用戶管理演示")
@RestController
public class UserController {
@Autowired
UserService userService;
@GetMapping("/getUserById/{id}")
@ApiOperation(value = "獲取用戶信息", notes = "根據用戶 id 獲取用戶信息", tags = "查詢用戶信息類")
public User getUserById(@PathVariable Long id) {
return userService.getUserById(id);
}
@GetMapping("/getAllUsers")
@ApiOperation(value = "獲取所有用戶信息", notes = "獲取所有用戶信息", tags = "查詢用戶信息類")
public List<User> getAllUsers() {
return userService.getAllUsers();
}
@PostMapping("/saveUser")
@ApiOperation(value = "新增/修改用戶信息")
public User saveUser(@RequestBody User user) {
return userService.saveUser(user);
}
@DeleteMapping("/deleteById")
@ApiOperation(value = "刪除用戶信息", notes = "根據用戶 id 刪除用戶信息")
public String deleteById(@PathVariable Long id) {
userService.deleteById(id);
return "success";
}
}複製代碼
啓動工程,打開瀏覽器訪問: http://localhost:8080/swagger-ui.html ,能夠看到以下頁面:瀏覽器
這張圖中能夠看到咱們的 tag 分組。
https://blog.csdn.net/xupeng874395012/article/details/68946676