spring doc
依赖jar包
引入包 | 版本 |
---|---|
jdk | 1.8 |
spring boot | 2.7.2 |
knife4j-springdoc-ui | 3.0.3 |
spring-boot-autoconfigure | 2.7.2 |
springfox-boot-starter | 3.0.0 |
使用
添加依赖
maven
<dependency>
<groupId>cn.allbs</groupId>
<artifactId>allbs-swagger3</artifactId>
<version>2.0.2</version>
</dependency>
开启swagger功能
启动类添加@EnableAllbsSwagger3
注解
过滤uri不映射出来
如果使用了通用包中的@AllbsResponseAdvice
包装了返回结果则需要添加以下配置
ignore:
urls:
- /v3/api-docs
swagger2配置说明(根据自己实际情况配置)
swagger:
title: springDoc文档
description: 这是springdoc文档说明
version: 1.0
securitySchemes:
token:
type: APIKEY # 类型
in: HEADER # 放header里面
name: token # header-key
servers:
- url: http://127.0.0.1:8888 # 自定义服务器 URL,如部署在docker中时可以配置
description: 本地服务器
备注
springdoc:
api-docs:
# 通过此处关闭生产环境的api-docs
enabled: false
# 配置需要生成接口文档的扫描包
packages-to-scan: cn.allbs.swagger.controller
# 配置需要生成接口文档的接口路径,如果增加了该节点,那么只将/user开头的接口文档生成出来
paths-to-match: /user/**
访问地址
http://{ip}:{port}/doc.html
使用示例
package cn.allbs.swagger.entity;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
import java.time.LocalDateTime;
/**
* 类 SwaggerEntity
* </p>
*
* @author ChenQi
* @since 2022/8/8 15:24
*/
@Data
@Schema(title = "swagger类", name = "SwaggerEntity")
public class SwaggerEntity {
@Schema(description = "时间", name = "time", implementation = LocalDateTime.class, example = "2022-08-09'T'12:00:00")
private LocalDateTime time;
@Schema(description = "名称", name = "name", implementation = String.class, example = "张三")
private String name;
@Schema(description = "计数", name = "count", implementation = Integer.class, example = "12")
private Integer count;
}
package cn.allbs.swagger.controller;
import cn.allbs.common.utils.R;
import cn.allbs.swagger.entity.SwaggerEntity;
import io.swagger.v3.oas.annotations.Operation;
import io.swagger.v3.oas.annotations.Parameter;
import io.swagger.v3.oas.annotations.Parameters;
import io.swagger.v3.oas.annotations.enums.ParameterIn;
import io.swagger.v3.oas.annotations.media.Content;
import io.swagger.v3.oas.annotations.media.ExampleObject;
import io.swagger.v3.oas.annotations.media.Schema;
import io.swagger.v3.oas.annotations.responses.ApiResponse;
import io.swagger.v3.oas.annotations.responses.ApiResponses;
import io.swagger.v3.oas.annotations.tags.Tag;
import lombok.RequiredArgsConstructor;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import java.time.LocalDateTime;
/**
* 类 TestNoAuthController
* </p>
*
* @author ChenQi
* @since 2022/8/9 9:49
*/
@Tag(name = "B类")
@RestController
@RequestMapping("user")
@RequiredArgsConstructor
public class TestNoAuthController {
@Operation(summary = "B类A方法")
@Parameters({
@Parameter(name = "name", description = "这是名称的注释", required = true, schema = @Schema(implementation = String.class), in = ParameterIn.QUERY),
@Parameter(name = "count", description = "这是计数的注释", required = false, schema = @Schema(implementation = Integer.class), in = ParameterIn.QUERY),
})
@ApiResponses({
@ApiResponse(responseCode = "200", description = "查询成功", content =
{@Content(mediaType = "application/json",
schema = @Schema(implementation = SwaggerEntity.class),
examples = {@ExampleObject(value = "{n" +
" "code": 200,n" +
" "success": true,n" +
" "msg": "操作成功",n" +
" "data": {n" +
" "time": "2022-08-09T15:44:40.991",n" +
" "name": "xxx",n" +
" "count": 123n" +
" }n" +
"}")})})
})
@GetMapping("swaggerTest")
public R<SwaggerEntity> swaggerTest(String name, Integer count) {
SwaggerEntity swaggerEntity = new SwaggerEntity();
swaggerEntity.setName(name);
swaggerEntity.setTime(LocalDateTime.now());
swaggerEntity.setCount(count);
return R.ok(swaggerEntity);
}
}
swagger2及swagger3注解对应关系
SpringFox | SpringDoc |
---|---|
@Api | @Tag |
@ApiIgnore | @Parameter(hidden = true)or@Operation(hidden = true)or@Hidden |
@ApiImplicitParams | @Parameters |
@ApiImplicitParam | @Parameter |
@ApiModel | @Schema |
@ApiModelProperty | @Schema |
@ApiOperation(value = “foo”, notes = “bar”) | @Operation(summary = “foo”, description = “bar”) |
@ApiParam | @Parameter |
@ApiResponse(code = 404, message = “foo”) | ApiResponse(responseCode = “404”, description = “foo”) |
原文始发于微信公众号(询于刍荛):spring boot中的文档工具spring doc的封装,通过yml配置即用,更换了默认的swagger文档页面。
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
文章由极客之音整理,本文链接:https://www.bmabk.com/index.php/post/281290.html