SpringBoot集成Swagger2

  • 使用原因 :本人以前做项目的时候都是前后端都写的,所以一般使用的测试接口工具是postman,重要的接口都是测试一个保存一个方便自己以后调试使用。其中许多方式传参还是值得考究的,这里就不做介绍了!后来!前端终于不用自己写了,那么如何把接口提供出去而又不用手写接口文档呢?所有在就使用了Swagger。
  •  简单说下,它的出现就是为了方便进行测试后台的restful形式的接口,实现动态的更新,当我们在后台的接口修改了后,swagger可以实现自动的更新,而不需要认为的维护这个接口进行测试。
  • 正式部署起来吧~

  • springBoot集成swagger2
  1. springBoot 版本 
    1.5.10.RELEASE
  2. swagger2 版本 
    RELEASE

创建springBoot项目在pom.xml中导入所需jar包

        <dependency>
            <groupId>io.springfox</groupId>
            <artifactId>springfox-swagger2</artifactId>
            <version>RELEASE</version>
        </dependency>
        <dependency>
            <groupId>io.springfox</groupId>
            <artifactId>springfox-swagger2</artifactId>
            <version>2.6.1</version>
        </dependency>
        <dependency>
            <groupId>io.springfox</groupId>
            <artifactId>springfox-swagger-ui</artifactId>
            <version>2.6.1</version>
        </dependency>

 

  4.swagger的驱动配置类

package org.linlinjava.litemall.wx;

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

/**
 * Created by wo on 2018/8/16.
 */
//注解开启 swagger2 功能
@EnableSwagger2
@Configuration
public class Swagger2 {
    @Bean
    public Docket createRestApi() {
        return new Docket(DocumentationType.SWAGGER_2)
                .apiInfo(apiInfo())//调用apiInfo方法,创建一个ApiInfo实例,里面是展示在文档页面信息内容
                .select()
                //控制暴露出去的路径下的实例
                //如果某个接口不想暴露,可以使用以下注解
                //@ApiIgnore 这样,该接口就不会暴露在 swagger2 的页面下
                .apis(RequestHandlerSelectors.basePackage("org.linlinjava.litemall.wx.web"))
                .paths(PathSelectors.any())
                .build();
    }
    //构建 api文档的详细信息函数
    private ApiInfo apiInfo() {
        return new ApiInfoBuilder()
                //页面标题
                .title("Spring Boot 海车项目Api接口  RestFul API")
                //创建人
                .contact(new Contact("Timothy", "http://www.haiche.com", ""))
                //版本号
                .version("1.0")
                //描述
                .description("小程序后端接口")
                .build();
    }
}

 

 

   

  • 注意所存的位置是和springboot的驱动类同级存在
  • 在springBoot的驱动类写@EnableSwagger2 
  • 代码接口编写

    @ApiOperation("默认获取开通地区信息")
    @GetMapping(value = "/openAddress", produces = {"application/json;charset=UTF-8"})
    public JsonFormat openAddress(){
        try {
            logger.info("获取开通地区接口信息---->".concat("openAddress HTTP/GET"));
            return new JsonFormat(ConstantCode.SUCCESS,"SUCCESS",haiCheOpenAddressService.openAddress());
        }catch (Exception e){
            e.printStackTrace();
            return new JsonFormat(ConstantCode.ERROR,"服务器错误", null);
        }
    }

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值