• springboot中swagger接口文档使用


    1.pom文件引用
      <dependency>
        <groupId>com.github.xiaoymin</groupId>
        <artifactId>swagger-bootstrap-ui</artifactId>
        <version>1.9.6</version>
      </dependency>

    2.注解:

      controller注解:

        //接口说明
        @ApiOperation(value = "查询商品分期数据")
        //接口参数
        @ApiImplicitParams({
          @ApiImplicitParam(value = "商品ids", name = "ids"),
        })
        //接口返回
        @ApiResponses({

          @ApiResponse(code = 0, message = "商品信息数组 siteProducts", response = SiteProduct.class)

         })

      entity注解:
        @ApiModelProperty(value = "分期数")
        private String periods;

    3.启动项目后,直接通过 /doc.html 地址查询接口信息

  • 相关阅读:
    FR #3题解
    L3-005. 垃圾箱分布
    L2-004. 这是二叉搜索树吗?
    L2-002. 链表去重
    L1-009. N个数求和
    L3-003. 社交集群
    L3-004. 肿瘤诊断
    L2-001. 紧急救援
    L3-002. 堆栈
    L2-007. 家庭房产
  • 原文地址:https://www.cnblogs.com/smj1990/p/12012033.html
Copyright © 2020-2023  润新知