Swagger3.0(Springdoc)日常使用记录

文章目录


前言

本文并不是Swagger的使用教程,只是记录一下本人的操作,感兴趣的可以看下

一、默认地址

http://localhost:9083/lims/swagger-ui/index.html

http://server:port/context-path/v3/api-docs

http://server:port/context-path/v3/api-docs.yaml

二、注解

@Operation

@Operation(summary = "删除仪器备份管理表", description = "删除仪器备份管理表")

summary代表上面的信息

description是接口的详细信息

@Tag

@Tag(name = "hello",description = "hello2")

@Tag注解在文档中起着美化和分类的作用,但和API的运行逻辑及其功能没有直接的关系。

@Tag里面还有一个 extensions属性,可以用来挂文档,就是代码解释什么的

三、SpringBoot基础配置

Springdoc入门地址

yaml 复制代码
springdoc:
  api-docs:
    # 是否开启接口文档
    enabled: true
  swagger-ui:
    # 持久化认证数据,如果设置为 true,它会保留授权数据并且不会在浏览器关闭/刷新时丢失
    persistAuthorization: true
    path: /swagger-ui.html
xml 复制代码
    <dependency>
                <groupId>org.springdoc</groupId>
                <artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>
                <version>${swagger.version}</version>
            </dependency>

四、Swagger导入apifox

官网教程

  • 进入项目
  • 选择导入数据
  • 填写Swagger地址
  • 有的Swagger配置了密码
  • 上面有定时导入

五、Swagger其他配置

  • Disabling the /v3/api-docs endpoint
    springdoc.api-docs.enabled=false
  • Disabling the swagger-ui
    springdoc.swagger-ui.enabled=false

六 knife4j

参考文章

个人笔记,不同意见,望有交流

直接可以点击跳转连接

作者

Springdoc
官网https://swagger.io/

相关推荐
小趴菜不能喝1 天前
spring boot 3.x 整合Swagger3
java·spring boot·swagger
黑金IT3 天前
Fastify Swagger:自动化API文档生成与展示
nodejs·swagger·fastify
gc_22998 天前
Admin.NET源码学习(5:swagger使用浅析)
swagger·admin.net
李少兄1 个月前
解决Swagger 3中`Unable to scan documentation context default`错误
java·swagger
光影少年1 个月前
node配置swagger
前端·javascript·node.js·swagger
弥琉撒到我1 个月前
微服务swagger解析部署使用全流程
java·微服务·架构·swagger
Java小卷1 个月前
自研API接口管理工具APIFirst1.0版本介绍
api·swagger
yicj1 个月前
SpringBoot3 Swagger笔记整理
java·springboot·swagger
Nonullpoint.2 个月前
《Spring Boot 集成 Swagger:打造高效接口文档与开发体验》
java·spring boot·后端·swagger
小谭の努力2 个月前
Swagger的增强knife4j
spring boot·swagger·knife4j