Swagger2学习使用

一、Swagger2介绍

前后端分离开发模式中,api文档是最好的沟通方式。
Swagger 是一个规范和完整的框架,用于生成、描述、调用和可视化 RESTful 风格的 Web 服务。
1. 及时性 (接口变更后,能够及时准确地通知相关前后端开发人员)
2. 规范性(并且保证接口的规范性,如接口的地址,请求方式,参数及响应格式和错误信息)
3. 一致性(接口信息一致,不会出现因开发人员拿到的文档版本不一致,而出现分歧)
4. 可测性 (直接在接口文档上进行测试,以方便理解业务)

二、Swagger2配置

1、依赖

pomxml引入依赖

 <!--swagger-->
        <dependency>
            <groupId>io.springfox</groupId>
            <artifactId>springfox-swagger2</artifactId>
            <version>2.7.0</version>
        </dependency>
        <dependency>
            <groupId>io.springfox</groupId>
            <artifactId>springfox-swagger-ui</artifactId>
            <version>2.7.0</version>
        </dependency>

2、配置类

import com.google.common.base.Predicates;
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.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 SwaggerConfig {

    @Bean
    public Docket webApiConfig(){

        return new Docket(DocumentationType.SWAGGER_2)
                .groupName("Api")
                .apiInfo(webApiInfo())
                .select()
                .paths(Predicates.not(PathSelectors.regex("/admin/.*")))
                .paths(Predicates.not(PathSelectors.regex("/error.*")))
                .build();

    }

    private ApiInfo webApiInfo(){

        return new ApiInfoBuilder()
                .title("开发API文档")
                .description("本文档描述了软件研发接口定义")
                .version("1.0")
                .contact(new Contact("dashu", "http://dashu.com", "[email protected]"))
                .build();
    }
}

二、Swagger2定义注解

1、定义实体类和参数

定义在JavaBean上:@ApiModel
定义在参数上:@ApiModelProperty
Swagger2学习使用_第1张图片

2、定义接口说明和参数说明

定义在类上:@Api
定义在方法上:@ApiOperation
定义在参数上:@ApiParam

Swagger2学习使用_第2张图片

三、Swagger2测试

地址:http://localhost:8001/swagger-ui.html
Swagger2学习使用_第3张图片

测试方法
Swagger2学习使用_第4张图片

返回结果
Swagger2学习使用_第5张图片

你可能感兴趣的:(java,Swagger2,Swagger配置文件,Swagger学习使用)