接口文档(采用Swagger框架)

传统的接口文档(版本迭代时,接口文档有可能没有更新),所以采用swagger框架,可以通过注解的方式来生成文档

开发中,可以将需求文档、数据库、接口文档等放在test测试目录resource下,工程打包时,并不会打包test目录下的文件

test目录.jpg
swagger文件夹
controller层上的注解生成文档案例
package cn.kooun.controller;

import java.io.Serializable;

import javax.servlet.http.HttpServletRequest;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

import com.alibaba.fastjson.JSON;

import cn.kooun.common.ResponseUtil;
import cn.kooun.common.check.CheckUtil;
import cn.kooun.common.result.ResultInfo;
import cn.kooun.service.base.MsgService;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiImplicitParam;
import io.swagger.annotations.ApiImplicitParams;
import io.swagger.annotations.ApiOperation;
import io.swagger.annotations.ApiParam;
import io.swagger.annotations.ApiResponse;
import io.swagger.annotations.ApiResponses;

/**
 * swagger控制层案例
 */
@RestController
//接口模块描述
@Api(tags = "swagger演示模块")
@RequestMapping("/swaggerDemo")
public class SwaggerDemoContrller {
    
    @Autowired
    private MsgService msgService;
    /**
     * 表单请求案例
     * @param userId
     * @param code
     * @return
     */
    //value=接口名称, notes=接口描述
    @ApiOperation(value = "表单请求案例", notes = "请求使用表单请求")
    @PostMapping("/demoQuery")
    @ApiImplicitParams({
        //paramType=参数请求类型 (query=表单请求,body=json请求)
        //name = 参数名称
        //value = 参数名称描述
        @ApiImplicitParam(name="userId",value="用户id",paramType="query"),
        @ApiImplicitParam(name="code",value="验证码",paramType="query")
        })
    @ApiResponses({
        @ApiResponse(code=200,message=ResultInfo.COMMON_JSON),})
    public Object demoQuery(
            HttpServletRequest request,
            @ApiParam()String userId,
            String code) {
        //返回测试数据
        if(CheckUtil.checkDebugRsponse(request)) {
            //从t_debug_response表中获取json格式数据
            return JSON.parse(msgService.getDebugResponse(1L));
        }
        return ResponseUtil.success();
    }
    
    /**
     * json请求案例
     * @param user
     * @return
     */
    @ApiOperation(value = "json请求案例", notes = "请求使用json请求")
    @PostMapping("/demoJson")
    @ApiImplicitParams({
        @ApiImplicitParam(name="userId",value="用户id",required=true,paramType="body"),
        @ApiImplicitParam(name="userName",value="用户名称",paramType="body")
        })
    @ApiResponses({
        @ApiResponse(code=200,message=ResultInfo.COMMON_JSON),})
    public Object demoJson(HttpServletRequest request, @RequestBody User user) {
        System.out.println(user);
        //返回测试数据
        if(CheckUtil.checkDebugRsponse(request)) {
            return JSON.parse("{\r\n" + 
                    "  'result': '业务结果',\r\n" + 
                    "  'message': '弹窗消息',\r\n" + 
                    "  'status': '响应状态',\r\n" + 
                    "  'target': '错误提示',\r\n" + 
                    "  'jump': '跳转页面'\r\n" + 
                    "}");
        }
        return ResponseUtil.success();
    }
    public static void main(String[] args) {
        System.out.println(JSON.toJSONString(ResponseUtil.error("错误原因")));
    }
}



/**
 * model
 * @author chenwei
 * @date 2019年6月25日 下午5:29:54
 */
class User implements Serializable{
    /**
     * 
     */
    private static final long serialVersionUID = 306021471164575961L;
    private String userId;
    private String userName;
    public String getUserId() {
        return userId;
    }
    public void setUserId(String userId) {
        this.userId = userId;
    }
    public String getUserName() {
        return userName;
    }
    public void setUserName(String userName) {
        this.userName = userName;
    }
    @Override
    public String toString() {
        return "User [userId=" + userId + ", userName=" + userName + "]";
    }
    
    
}
自定义请求接口参数上的注解生成文档案例
package cn.kooun.pojo.request;

import java.util.Date;

import javax.persistence.Table;

import cn.kooun.pojo.base.Uuid_IDDate;
import io.swagger.annotations.ApiModelProperty;
/**
 * 请求参数封装案例
 * @author chenwei
 * @date 2019年8月2日 下午3:12:54
 */
public class RequestModel {

    @ApiModelProperty(value="商家Id",name="suserid",required=true)
    private String suserid;
    
    @ApiModelProperty(value="分类Id",name="goodstypeid",required=true)
    private String goodstypeid;
    
    @ApiModelProperty(value="商品名称",name="suserid",required=true)
    private String goodsname;
    
    @ApiModelProperty(value="商品名称小写状态",hidden=true)
    private String goodsnameIndex;
    
    @ApiModelProperty(value="计算单位",name="unittype",required=true)
    private Integer unittype;
    
    @ApiModelProperty(value="单价",name="unitprice",required=true)
    private String unitprice;
    
    @ApiModelProperty(value="待售数量",name="count",required=true)
    private String count;
    
    @ApiModelProperty(value="是否特色优品 0=否 1=是",name="superiorstatus",required=true)
    private Integer superiorstatus;
    
    @ApiModelProperty(value="特色优品是否错选 0=否 1=是",name="issuperror",required=true)
    private Integer issuperror;
    
    @ApiModelProperty(value="商品图片",name="pic")
    private String pic;
    
    @ApiModelProperty(value="商品简介/促销广告",name="introduce")
    private String introduce;
    
    @ApiModelProperty(value="状态 0=下架 1=上架",name="status",required=true)
    private Integer status;
    
    @ApiModelProperty(value="上架时间",example="2019-06-27 16:56:00",name="upframeTime")
    private Date upframeTime;
    
    @ApiModelProperty(value="下架时间",example="2019-06-27 16:56:00",name="downframeTime")
    private Date downframeTime;


   
    public String getSuserid() {
        return suserid;
    }

    public void setSuserid(String suserid) {
        this.suserid = suserid;
    }

    public String getGoodstypeid() {
        return goodstypeid;
    }

    public void setGoodstypeid(String goodstypeid) {
        this.goodstypeid = goodstypeid;
    }

    public String getGoodsname() {
        return goodsname;
    }

    public void setGoodsname(String goodsname) {
        this.goodsname = goodsname;
    }

    public String getGoodsnameIndex() {
        return goodsnameIndex;
    }

    public void setGoodsnameIndex(String goodsnameIndex) {
        this.goodsnameIndex = goodsnameIndex;
    }

    public Integer getUnittype() {
        return unittype;
    }

    public void setUnittype(Integer unittype) {
        this.unittype = unittype;
    }

    public String getUnitprice() {
        return unitprice;
    }

    public void setUnitprice(String unitprice) {
        this.unitprice = unitprice;
    }

    public String getCount() {
        return count;
    }

    public void setCount(String count) {
        this.count = count;
    }

    public Integer getSuperiorstatus() {
        return superiorstatus;
    }

    public void setSuperiorstatus(Integer superiorstatus) {
        this.superiorstatus = superiorstatus;
    }

    public Integer getIssuperror() {
        return issuperror;
    }

    public void setIssuperror(Integer issuperror) {
        this.issuperror = issuperror;
    }

    public String getPic() {
        return pic;
    }

    public void setPic(String pic) {
        this.pic = pic;
    }

    public String getIntroduce() {
        return introduce;
    }

    public void setIntroduce(String introduce) {
        this.introduce = introduce;
    }

    public Integer getStatus() {
        return status;
    }

    public void setStatus(Integer status) {
        this.status = status;
    }

    public Date getUpframeTime() {
        return upframeTime;
    }

    public void setUpframeTime(Date upframeTime) {
        this.upframeTime = upframeTime;
    }

    public Date getDownframeTime() {
        return downframeTime;
    }

    public void setDownframeTime(Date downframeTime) {
        this.downframeTime = downframeTime;
    }


}
main下配置swagger
package cn.kooun.core.config;

import org.springframework.beans.factory.annotation.Value;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.servlet.config.annotation.ResourceHandlerRegistry;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;

import com.github.xiaoymin.swaggerbootstrapui.annotations.EnableSwaggerBootstrapUI;

import cn.kooun.common.ip.IpUtil;
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.spring.web.plugins.Docket;
import springfox.documentation.swagger2.annotations.EnableSwagger2;

/**
 *  swagger配置类
 *
 */
@Configuration
@EnableSwagger2
@EnableSwaggerBootstrapUI
public class Swagger2Config implements WebMvcConfigurer {

    /**
     *
     * 显示swagger-ui.html文档展示页,还必须注入swagger资源:
     * 
     * @param registry
     */
    @Override
    public void addResourceHandlers(ResourceHandlerRegistry registry) {
        registry.addResourceHandler("swagger-ui.html")
                .addResourceLocations("classpath:/META-INF/resources/");
        registry.addResourceHandler("doc.html")
                .addResourceLocations("classpath:/META-INF/resources/");
        registry.addResourceHandler("/webjars/**")
                .addResourceLocations("classpath:/META-INF/resources/webjars/");
        
    }

    /**
     * 加载swagger2
     * 
     * @return
     */
    @Bean
    public Docket buildDocket(){
        return new Docket(DocumentationType.SWAGGER_2)
                .apiInfo(apiInfo())
                .select()
                //扫描指定的包生成接口文档
                .apis(RequestHandlerSelectors.basePackage("cn.kooun.controller"))
                .paths(PathSelectors.any())
                .build();
    }
    @Value("${server.port}")
    private String serverPort;

    /**
     * swaggerui页面数据配置
     * 文档访问路径
     * http://<ip>:<port>/v2/api-docs
     * 原版视图访问路径
     * http://<ip>:<port>/swagger-ui.html
     * swagger-bootstrap-ui视图
     * http://<ip>:<port>/doc.html
     * @return
     */
    private ApiInfo apiInfo() {
        return new ApiInfoBuilder()
                .title("xxx测试服务API")
                .description("空云信息技术有限公司@API"
                        + "<p>"
                        + "<font style='color:red'>"
                        + "如果需要获取业务数据的注释请在请求头中添加以下参数"
                        + "debug=1"
                        + "</font>"
                        + "</p>")
                .termsOfServiceUrl("http://"+IpUtil.getLocalIP()+":" + serverPort)
                .version("1.0")
                .build();
        
    }

}
IpUtil类
package cn.kooun.common.ip;

import java.net.InetAddress;
import java.net.NetworkInterface;
import java.util.Enumeration;


/**
 * IP工具类
 */
public class IpUtil {
    

    /**
     * 此方法描述的是:获得服务器的IP地址
     * 
     * @author chenwei
     * @date 2018年4月10日 上午10:50:50
     * @return
     */
    public static String getLocalIP() {
        String sIP = "";
        InetAddress ip = null;
        try {
            boolean bFindIP = false;
            Enumeration<NetworkInterface> netInterfaces = NetworkInterface.getNetworkInterfaces();
            while (netInterfaces.hasMoreElements()) {
                if (bFindIP) {
                    break;
                }
                NetworkInterface ni = (NetworkInterface) netInterfaces.nextElement();

                Enumeration<InetAddress> ips = ni.getInetAddresses();
                while (ips.hasMoreElements()) {
                    ip = (InetAddress) ips.nextElement();
                    if (!ip.isLoopbackAddress() && ip.getHostAddress().matches("(\\d{1,3}\\.){3}\\d{1,3}")) {
                        bFindIP = true;
                        break;
                    }
                }
            }
        } catch (Exception e) {
            e.printStackTrace();
        }
        if (null != ip) {
            sIP = ip.getHostAddress();
        }
        return sIP;
    }


}
运行

浏览器地址栏输入http://主机ip:端口号/swagger-ui.html

swagger原生ui.jpg

ctrl + h eclipse 的全文搜索(查bug)

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 216,142评论 6 498
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 92,298评论 3 392
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 162,068评论 0 351
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 58,081评论 1 291
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 67,099评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 51,071评论 1 295
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,990评论 3 417
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,832评论 0 273
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 45,274评论 1 310
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,488评论 2 331
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,649评论 1 347
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,378评论 5 343
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,979评论 3 325
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,625评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,796评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,643评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,545评论 2 352

推荐阅读更多精彩内容