码迷,mamicode.com
首页 > 其他好文 > 详细

swagger的使用

时间:2020-11-17 12:24:31      阅读:4      评论:0      收藏:0      [点我收藏+]

标签:ica   inf   agg   esc   开发   new   网站   enables   ati   

介绍:
前后端分离开发模式中,api文档是最好的沟通方式。
Swagger 是一个规范和完整的框架,用于生成、描述、调用和可视化 RESTful 风格的 Web 服务。
总结:
目前使用到swagger的测试功能,可以替代postman进行 各种请求方式 的api接口测试

项目中使用:
1 引入依赖

<!--lombok用来简化实体类:需要安装lombok插件-->
        <dependency>
            <groupId>org.projectlombok</groupId>
            <artifactId>lombok</artifactId>
            <scope>provided </scope>
        </dependency>

2 配置类中注册

@Configuration
@EnableSwagger2
public class SwaggerConfig {

    @Bean
    public Docket webApiConfig(){

        return new Docket(DocumentationType.SWAGGER_2)
                .groupName("webApi")
                .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("Helen", "http://atguigu.com", "55317332@qq.com"))
                .build();
    }
}

swagger的使用

标签:ica   inf   agg   esc   开发   new   网站   enables   ati   

原文地址:https://www.cnblogs.com/yxyuanxiang/p/13958179.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!