Swagger2相较于传统Api文档的优点

手写Api文档的几个痛点:

文档需要更新的时候,需要再次发送一份给前端,也就是文档更新交流不及时。

接口返回结果不明确

不能直接在线测试接口,通常需要使用工具,比如postman

接口文档太多,不好管理

Swagger也就是为了解决这个问题,当然也不能说Swagger就一定是完美的,当然也有缺点,最明显的就是代码移入性比较强。

可以直接使用Swagger editor编写接口文档,我们这里讲解的是SpringBoot整合Swagger2,直接生成接口文档的方式。

依赖文件

<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>

配置类

package com.boss.hr.train.fishkkmybatis.config;

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.spring.web.plugins.Docket; /**
* @author fishkk
* @version 1.0.0
* @since
*/
@Configuration
public class Swagger2Configuration {
@Bean
public Docket createRestApi() {
return new Docket(DocumentationType.SWAGGER_2)
.apiInfo(apiInfo())
.select()
.apis(RequestHandlerSelectors.basePackage("com.boss.hr.train.fishkkmybatis.controller"))
.paths(PathSelectors.any())
.build();
} private ApiInfo apiInfo() {
return new ApiInfoBuilder()
.title("springboot利用swagger构建api文档")
.description("fishkk的Swagger")
.version("1.0")
.build();
} }

在启动函数出天价@EnableSwagger2,到这里就可以正常的使用Swagger2 了

Swagger2 的具体使用
package com.boss.hr.train.fishkkmybatis.controller;

import com.boss.hr.train.fishkkmybatis.annotation.Logg;
import com.boss.hr.train.fishkkmybatis.entity.Dictionary;
import com.boss.hr.train.fishkkmybatis.entity.Result;
import com.boss.hr.train.fishkkmybatis.enums.DictionaryEnum;
import com.boss.hr.train.fishkkmybatis.exception.BaseException;
import com.boss.hr.train.fishkkmybatis.service.impl.DictionaryServiceImpl;
import io.swagger.annotations.ApiImplicitParam;
import io.swagger.annotations.ApiOperation;
import org.springframework.data.redis.core.RedisTemplate;
import org.springframework.validation.BindingResult;
import org.springframework.web.bind.annotation.*; import javax.annotation.Resource;
import javax.validation.Valid;
import java.util.List;
import java.util.Random;
import java.util.concurrent.TimeUnit; /**
* @author fishkk
* @version 1.0.0
* @since 2019/7/27
*/
@RestController
@RequestMapping(value = "/dic")
@CrossOrigin
public class DictionaryController {
/**
* Redis 缓存
*/
@Resource
private RedisTemplate redisTemplate; @Resource
private DictionaryServiceImpl dictionaryService; private List<Dictionary> list; /**
* 创建字典实体
* @author fishkk
* @since 2017/7/25
* @param dictionary 字典实体
* @return Dictionary 放回创建的字典实体
*/
@ApiOperation(value="创建字典", notes="根据Dictionary对象创建字典")
@ApiImplicitParam(name = "dictionary", value = "字典详细实体dictionary", required = true, dataType = "Dictionary")
@PostMapping(value = "/insert")
public Result insertDic(@Valid Dictionary dictionary, BindingResult bindingResult){
if (bindingResult.hasErrors()){
return Result.error(DictionaryEnum.ERROR_INPUT);
}
dictionaryService.insert(dictionary);
return Result.success(dictionary);
} /**
* 根据主键查找字典
* @author fishkk
* @since 2019/7/25
* @param id 主键id
* @return dictionary查找到的实体对象
*/
@ApiOperation(value = "获取字典信息",notes = "根据id获取字典信息")
@ApiImplicitParam(name = "id",value = "字典id",required = true, dataType = "Long", paramType = "path")
@GetMapping(value = "/dic")
public Result findById(@RequestParam(value = "id") Integer id){
if (list == null){
list = dictionaryService.selectAll();
for (Dictionary x:list) {
long time = new Random().nextInt(10);
redisTemplate.opsForValue().set(x.getCategoryId(),x,12,TimeUnit.HOURS);
}
}
if (redisTemplate.opsForValue().get(id) != null){
return Result.success(redisTemplate.opsForValue().get(id));
}
redisTemplate.opsForValue().set(id,dictionaryService.selectByPrimaryKey(id),12,TimeUnit.HOURS);
return Result.success(dictionaryService.selectByPrimaryKey(id)); } /**
* 根据主键删除字典
* @author fishkk
* @since 2019/7/25
* @param id 字典主键
*/
@ApiOperation(value = "根据id删除单个字典表",notes = "根据id删除字典")
@ApiImplicitParam(name = "id",value = "用户id",required = true, dataType = "Long", paramType = "path")
@GetMapping(value = "/remove/{id}")
public Result deleteById(@PathVariable("id") Integer id){
dictionaryService.deleteByPrimaryKey(id);
return Result.success(null);
} /**
* 更新字典对象
* @author fishkk
* @since 2019/7/26
* @param dictionary 修改过的字典对象
*/
@ApiOperation(value="更新字典", notes="根据Dictionary更新对应的字典")
@ApiImplicitParam(name = "dictionary", value = "字典详细实体dictionary", required = true, dataType = "Dictionary")
@PostMapping(value = "/updata")
public Result updata(@Valid Dictionary dictionary, BindingResult bindingResult){
if (bindingResult.hasErrors()){
return Result.error(DictionaryEnum.ERROR_INPUT);
}
dictionaryService.updateByPrimaryKey(dictionary);
return Result.success(null);
} /**
* 根据字典名查询
* @author fishkk
* @since 2019/7/28
* @param name 字典名
*/
@GetMapping(value = "/get/{name}")
public Result findByName(@PathVariable("name") String name ){
return Result.success(dictionaryService.findByName(name));
} /**
* 根据字典类型查询
* @author fishkk
* @since 2019/7/28
* @param type 字典类型
*/
@GetMapping(value = "/gettype/{type}")
public Result findByType(@PathVariable("type") String type){
return Result.success(dictionaryService.findByType(type));
} /**
* 获取全部对象
* @author fishkk
* @since 2019/7/28
*/
@Logg
@GetMapping(value = "/getall")
public Result findByType(){
//throw new BaseException(DictionaryEnum.NOT_FOUND);
return Result.success(dictionaryService.selectAll());
// Float a = null;
// Float b = Float.intBitsToFloat(11);
// System.out.println(a + b);
// return null;
}
}

启动SpringBoot项目,访问 http://localhost:8080/swagger-ui.html

可以看到上诉类似的结果,我的项目启动太麻烦了含SpringCloud 就不展示了。

Swagger2的注解

swagger通过注解表明该接口会生成文档,包括接口名、请求方法、参数、返回信息的等等。

  • @Api:修饰整个类,描述Controller的作用
  • @ApiOperation:描述一个类的一个方法,或者说一个接口
  • @ApiParam:单个参数描述
  • @ApiModel:用对象来接收参数
  • @ApiProperty:用对象接收参数时,描述对象的一个字段
  • @ApiResponse:HTTP响应其中1个描述
  • @ApiResponses:HTTP响应整体描述
  • @ApiIgnore:使用该注解忽略这个API
  • @ApiError :发生错误返回的信息
  • @ApiImplicitParam:一个请求参数
  • @ApiImplicitParams:多个请求参数

springboot 整合Swagger2的使用的更多相关文章

  1. SpringBoot(七):SpringBoot整合Swagger2

    原文地址:https://blog.csdn.net/saytime/article/details/74937664 手写Api文档的几个痛点: 文档需要更新的时候,需要再次发送一份给前端,也就是文 ...

  2. SpringBoot整合Swagger2

    相信各位在公司写API文档数量应该不少,当然如果你还处在自己一个人开发前后台的年代,当我没说,如今为了前后台更好的对接,还是为了以后交接方便,都有要求写API文档. 手写Api文档的几个痛点: 文档需 ...

  3. SpringBoot整合Swagger2(Demo示例)

    写在前面 由于公司项目采用前后端分离,维护接口文档基本上是必不可少的工作.一个理想的状态是设计好后,接口文档发给前端和后端,大伙按照既定的规则各自开发,开发好了对接上了就可以上线了.当然这是一种非常理 ...

  4. SpringBoot整合Swagger2案例,以及报错:java.lang.NumberFormatException: For input string: ""原因和解决办法

    原文链接:https://blog.csdn.net/weixin_43724369/article/details/89341949 SpringBoot整合Swagger2案例 先说SpringB ...

  5. SpringBoot整合Swagger2详细教程

    1. 简介   随着前后端分离开发模式越来越流行,编写接口文档变成了开发人员非常头疼的事.而Swagger是一个规范且完整的web框架,用于生成.描述.调用可视化的RESTful风格的在线接口文档,并 ...

  6. SpringBoot整合Swagger2及使用

    简介 swagger是一个流行的API开发框架,这个框架以"开放API声明"(OpenAPI Specification,OAS)为基础, 对整个API的开发周期都提供了相应的解决 ...

  7. SpringBoot整合Swagger2,再也不用维护接口文档了!

    前后端分离后,维护接口文档基本上是必不可少的工作.一个理想的状态是设计好后,接口文档发给前端和后端,大伙按照既定的规则各自开发,开发好了对接上了就可以上线了.当然这是一种非常理想的状态,实际开发中却很 ...

  8. SpringBoot学习笔记(16)----SpringBoot整合Swagger2

    Swagger 是一个规范和完整的框架,用于生成,描述,调用和可视化RESTful风格的web服务 http://swagger.io Springfox的前身是swagger-springmvc,是 ...

  9. Spring Boot2 系列教程(十七)SpringBoot 整合 Swagger2

    前后端分离后,维护接口文档基本上是必不可少的工作. 一个理想的状态是设计好后,接口文档发给前端和后端,大伙按照既定的规则各自开发,开发好了对接上了就可以上线了.当然这是一种非常理想的状态,实际开发中却 ...

随机推荐

  1. 【记录】【windows】下查看端口是否被占用并杀死该进程

    查看端口是否被占用 netstat -aon|findstr "端口号" 比如 netstat -aon|findstr "6340" 杀死该进程 taskki ...

  2. Java实现RSA加密&AES加密&DES加密

    RSA package com.demo; import org.springframework.util.StringUtils; import javax.crypto.Cipher; impor ...

  3. Redis解决“重试次数”场景的实现思路

    很多地方都要用到重试次数限制,不然就会被暴力破解.比如登录密码. 下面不是完整代码,只是伪代码,提供一个思路. 第一种(先声明,这样写有个bug) import java.text.MessageFo ...

  4. 008 SpringCloud 学习笔记4-----Ribbon负载均衡

    1.Ribbon概述 实际环境中,我们往往会开启很多个itcast-service-provider的集群.此时我们获取的服务列表中就会有多个,到底该访问哪一个呢? Eureka中已经帮我们集成了负载 ...

  5. Elasticsearch进阶篇(一)~head插件的安装与配置

    1.安装node.js 1.1.通过官网下载二进制安装包 https://nodejs.org/en/download/ 选择对应的版本,右键复制下载链接,进入linux目录,切换到要安装目录的磁盘. ...

  6. 一个 frameset 框架

    <frameset border="0" framespacing="0" rows="45,*" frameborder=" ...

  7. 基于Keras搭建MLP

    Keras是一套基于Tensorflow.Theano及CNTK后端的高层神经网络API,可以非常友好地支持快速实验,本文从零开始介绍了如何使用Keras搭建MLP并给出两个示例. 基于Ubuntu安 ...

  8. 【rt-thread】2、尝试用ENV添加18b20传感器

    尝试用ENV添加18b20传感器 rt-thread能通过env工具添加或者裁剪工程,这里调试的是通过ENV添加18b20传感器. 具体程序实现,可以参考以下资料 https://www.rt-thr ...

  9. JMX远程监控JVM

    远程监控JVM状态需要在JVM启动的时候需要加上一段代码开启这个功能.(以下全部以ubuntu-14-04-server.jdk1.8.tomcat7.0环境为基础) 配置的时候分两种情况:1.无需配 ...

  10. CentOS7安装Grafana(Yum)

    一.概述 Grafana是一个跨平台的开源的分析和可视化工具,可以通过将采集的数据查询然后可视化的展示,并及时通知. 其特点: 丰富的可视化显示插件,包括热图.折线图.饼图,表格等等. 多数据源,支持 ...