Springboot集合SwaggerV3(OpenAPI)+ Knife4J 生成接口文档

SwaggerV3(OpenAPI)+ Knife4J

  • SwaggerV3是一种规范,可以描述RESTful
    API,它提供了一种标准格式,方便框架和工具之间进行统一;而Knife4J则是基于SwaggerV3规范的一个前端UI实现,它可以更好地展示Swagger规范生成的文档,包括展示样式和功能配置等。

  • 使用SpringBoot集成SwaggerV3和Knife4J,可以让开发人员通过注解等方式快速地配置API接口的相关信息,如参数、返回值、描述等,同时自动生成相应的API文档,并提供在线测试API的功能。这能够大大提升项目的开发效率和质量,同时也方便了维护和管理工作。

  • Knife4J是一款基于Swagger快速生成API文档和调试平台的开源工具,它可以轻松地将Swagger规范转换成易于阅读的文档,并支持在线测试API。Knife4J内置了多种主题和插件,提供了丰富的样式和功能配置,可以自定义API文档的展示方式和内容。同时,Knife4J还支持在线调试API接口,可以通过web界面直接调用接口,参数和返回值都会进行实时展示,让开发人员快速测试和调试API接口。

接下来我们来使用Springboot集合SwaggerV3(OpenAPI)+ Knife4J 生成接口文档

POM

首先添加maven依赖如下

    <dependency>
        <groupId>com.github.xiaoymin</groupId>
        <artifactId>knife4j-spring-boot-starter</artifactId>
        <version>3.0.3</version>
    </dependency>

yml配置

在application.yml配置文件中添加以下信息

knife4j:
    enable: true
    documents:
      - group: Test Group
        name: My Documents
        locations: classpath:wiki/\*
    setting:
      # default lang
      language: en-US
      # footer
      enableFooter: false
      enableFooterCustom: true
      # header
      enableHomeCustom: true
      homeCustomLocation: classpath:wiki/README.md
      # models
      enableSwaggerModels: true
      swaggerModelName: My Models

注入配置

使用@Configuration注入一个Knife4jConfiguration类并使用@EnableKnife4j 使Knife4j 生效,该注解是为了解决springboot与Knife4j版本冲突可能导致无法运行的问题。
使用@Bean注入webMvcEndpointHandlerMapping是为了解决springboot-admin等与Knife4J的冲突问题

import com.github.xiaoymin.knife4j.spring.annotations.EnableKnife4j;
import org.springframework.boot.actuate.autoconfigure.endpoint.web.CorsEndpointProperties;
import org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties;
import org.springframework.boot.actuate.autoconfigure.web.server.ManagementPortType;
import org.springframework.boot.actuate.endpoint.ExposableEndpoint;
import org.springframework.boot.actuate.endpoint.web.*;
import org.springframework.boot.actuate.endpoint.web.<
  • 3
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 2
    评论
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值