符合中小企业对网站设计、功能常规化式的企业展示型网站建设
本套餐主要针对企业品牌型网站、中高端设计、前端互动体验...
商城网站建设因基本功能的需求不同费用上面也有很大的差别...
手机微信网站开发、微信官网、微信商城网站...
本篇文章给大家分享的是有关Springboot集成swagger2生成接口文档的全过程是怎样的,小编觉得挺实用的,因此分享给大家学习,希望大家阅读完这篇文章后可以有所收获,话不多说,跟着小编一起来看看吧。
成都创新互联是一家专业提供贾汪企业网站建设,专注与成都网站建设、成都网站设计、H5页面制作、小程序制作等业务。10年已为贾汪众多企业、政府机构等服务。创新互联专业网站设计公司优惠进行中。
一、Swagger介绍
Swagger是一个规范和完整的框架,用于生成、描述、调用和可视化RESTful风格的web服务。目标是使客户端和文件系统作为服务器以同样的速度来更新文件的方法,参数和模型紧密集成到服务器。这个解释简单点来讲就是说,swagger是一款可以根据restful风格生成的接口开发文档,并且支持做测试的一款中间软件。
二、使用swagger优势
1、对于后端开发人员来说
不用再手写Wiki接口拼大量参数,避免手写错误 对代码侵入性低,采用全注解的方式,开发简单 方法参数名修改、新增、减少参数都可以直接生效,不用手动维护 缺点:增加了开发成本,写接口还得再写一套参数配置
2、对前端开发来说
后端只需要定义好接口,会自动生成文档,接口功能、参数一目了然 联调方便,如果出了问题,直接测试接口,实时检查参数和返回值,就可以快速定位是前端还是后端的问题
3、对于测试来说
但对于测试没有前端界面UI的功能,可以直接用它来测试接口 操作简单,不用了解具体代码就可以操作
三、springboot集成swagger使用
1、新建maven项目(结构如下:)
2、配置pom.xml文件
3、程序启动类
package com.dds.sbswagger;import lombok.extern.slf4j.Slf4j;import org.springframework.boot.SpringApplication;import org.springframework.boot.autoconfigure.SpringBootApplication;/** * @author dds */@SpringBootApplication@Slf4jpublic class SbSwaggerApplication { public static void main(String[] args) { SpringApplication.run(SbSwaggerApplication.class, args); log.info("\n----------------------------------------------------------\n\t" + "Application demo is running! Access URLs:\n\t" + "swagger-ui: \thttp://127.0.0.1:8080/swagger-ui.html\n\t" + "----------------------------------------------------------"); }}
4、SwaggerConfig配置类
package com.dds.sbswagger.config;import io.swagger.annotations.ApiOperation;import org.springframework.context.annotation.Bean;import org.springframework.context.annotation.Configuration;import springfox.documentation.builders.PathSelectors;import springfox.documentation.builders.RequestHandlerSelectors;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;import java.util.Collections;/** * @author DDS * @date 2019/9/10 13:55 */@Configuration@EnableSwagger2public class SwaggerConfig { @Bean public Docket api() { return new Docket(DocumentationType.SWAGGER_2) .select() .apis(RequestHandlerSelectors.basePackage("com.dds.sbswagger.controller")) //加了ApiOperation注解的类,才生成接口文档 .apis(RequestHandlerSelectors.withMethodAnnotation(ApiOperation.class)) .paths(PathSelectors.any()) .build() .apiInfo(apiInfo()); } private ApiInfo apiInfo() { return new ApiInfo( "Spring Boot项目集成Swagger实例文档", "我的微信公众号:大道七哥,欢迎大家关注。", "API V1.0", "Terms of service", new Contact("大道七哥", "https://www.cnblogs.com/jstarseven/", "jstarseven@163.com"), "Apache", "http://www.apache.org/", Collections.emptyList()); }}
5、实体类model
package com.dds.sbswagger.model;import io.swagger.annotations.ApiModel;import io.swagger.annotations.ApiModelProperty;import lombok.Data;/** * @author DDS * @date 2019/9/10 13:55 */@ApiModel("用户实体")@Datapublic class User { /** * 用户Id */ @ApiModelProperty("用户id") private int id; /** * 用户名 */ @ApiModelProperty(value = "用户姓名", example = "zhangdan", required = true) private String name; /** * 用户地址 */ @ApiModelProperty(value = "用户地址", example = "北京市海淀区", required = true) private String address; /** * 用户手机号 */ @ApiModelProperty(value = "用户手机号", example = "15689652367", required = true) private String phone; /** * 用户年龄 */ @ApiModelProperty(value = "用户年龄", example = "24", required = true) private Integer age;}
6、接口开发
package com.dds.sbswagger.controller;import com.dds.sbswagger.model.User;import io.swagger.annotations.*;import org.springframework.web.bind.annotation.*;/** * @author DDS * @date 2019/9/10 13:55 */@RestController@RequestMapping("/user")@Api(tags = "用户相关接口", description = "提供用户相关的Rest API")public class UserController { @PostMapping("/add") @ApiOperation(value = "新增用户接口", notes = "手机号、密码都是必输项,年龄随边填,但必须是数字") @ApiImplicitParams({ @ApiImplicitParam(name = "name", value = "用户名称", required = true, paramType = "form"), @ApiImplicitParam(name = "address", value = "用户地址", required = true, paramType = "form"), @ApiImplicitParam(name = "phone", value = "用户手机号", required = true, paramType = "form"), @ApiImplicitParam(name = "age", value = "用户年龄", required = true, paramType = "form", dataType = "Integer") }) public boolean addUser(@RequestBody User user) { return false; } @ApiOperation("通过id查找用户接口") @GetMapping("/find/{id}") public User findById(@PathVariable("id") int id) { return new User(); } @ApiOperation("更新用户信息接口") @PutMapping("/update") @ApiResponses({ @ApiResponse(code = 400, message = "请求参数没填好"), @ApiResponse(code = 404, message = "请求路径没有或页面跳转路径不对"), @ApiResponse(code = 405, message = "未知错误") }) public boolean update(@RequestBody User user) { return true; } @ApiOperation("删除用户接口") @DeleteMapping("/delete/{id}") public boolean delete(@PathVariable("id") int id) { return true; }}
7、swagger界面显示
以上就是Springboot集成swagger2生成接口文档的全过程是怎样的,小编相信有部分知识点可能是我们日常工作会见到或用到的。希望你能通过这篇文章学到更多知识。更多详情敬请关注创新互联行业资讯频道。