swagger2 usage--automatically generate interface documents

pom file reference

<dependency>
    <groupId>io.springfox</groupId>
    <artifactId>springfox-swagger2</artifactId>
    <version>2.4.0</version>
</dependency>
<dependency>
    <groupId>io.springfox</groupId>
    <artifactId>springfox-swagger-ui</artifactId>
    <version>2.4.0</version>
</dependency>
<dependency>
    <groupId>com.github.xiaoymin</groupId>
    <artifactId>swagger-bootstrap-ui</artifactId>
    <version>1.6</version>
</dependency>

code class

package com.imooc.config;

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.service.Contact;
import springfox.documentation.spi.DocumentationType;
import springfox.documentation.spring.web.plugins.Docket;
import springfox.documentation.swagger2.annotations.EnableSwagger2;

@Configuration
@EnableSwagger2
public class Swagger2 {
    
    

//    http://localhost:8088/swagger-ui.html     原路径
//    http://localhost:8088/doc.html     原路径

    // 配置swagger2核心配置 docket
    @Bean
    public Docket createRestApi() {
    
    
        return new Docket(DocumentationType.SWAGGER_2)  // 指定api类型为swagger2
                    .apiInfo(apiInfo())                 // 用于定义api文档汇总信息
                    .select()
                    .apis(RequestHandlerSelectors
                            .basePackage("com.xxx.controller"))   // 指定controller包
                    .paths(PathSelectors.any())         // 所有controller
                    .build();
    }

    private ApiInfo apiInfo() {
    
    
        return new ApiInfoBuilder()
                .title("网商贷api")        // 文档页标题
                .contact(new Contact("xxx",
                        "https://www.xxx.xyz",
                        "[email protected]"))        // 联系人信息
                .description("专为网商贷提供的api文档")  // 详细信息
                .version("1.0.1")   // 文档版本号
                .termsOfServiceUrl("https://www.xxx.xyz") // 网站地址
                .build();
    }
}

extension skills

1. Ignore a controller: add @ApiIgnore to the corresponding controller
2. The controller in the document is displayed in Chinese, add @Api to the corresponding controller

For example:

@Api(value = "注册登录", tags = {
    
    "用于注册登录的相关接口"})
@RestController
@RequestMapping("password")
public class PassPortController {
    
    

3. The method in the document is displayed in Chinese, and @ApiOperation is added to the corresponding method

For example:

@ApiOperation(value = "用户注册", notes = "用户注册", httpMethod = "POST")
@PostMapping("/regist")
public IMOOCJSONResult regist(@RequestBody UserBO userBO) {
    
    

4. In the document, the entities and fields that need to be imported by the front end are displayed in Chinese, and comments are added to the corresponding classes and fields, @ApiModel is added to the class, and
@ApiModelProperty is added to the field
. For example:

@ApiModel(value = "用户对象BO", description = "从客户端,由用户传入的数据封装在此entity中")
@Data
public class UserBO {
    
    
    @ApiModelProperty(value = "用户名", name = "username", example = "imooc", required = true)
    String username;
    @ApiModelProperty(value = "密码", name = "password", example = "123456", required = true)
    String password;
    @ApiModelProperty(value = "确认密码", name = "confirmPassword", example = "123456", required = false)
    String confirmPassword;
}

Guess you like

Origin blog.csdn.net/qq_42875600/article/details/129807593