IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> Java知识库 -> springboot项目整合swagger2 -> 正文阅读

[Java知识库]springboot项目整合swagger2

springboot项目整合swagger2

插件介绍

swagger作为一款2w多stars的文档说明工具(点击查看),和postman一样深受广大开发者喜好,不仅仅能独立部署展示,也可以集成到开发框架中,支持多种开发语言,java、php都有相应的开源插件使用。本篇文章中主要介绍JAVA中使用swagger功能。

java中使用,其插件仓库查看:https://mvnrepository.com/artifact/io.springfox,可以看到有许多springfox模块,那什么是springfox?其前身为swagger-springmvc,是一款开源的API doc框架,可以将我们的请求方法以文档方式呈现,后面改为SpringFox(官网),并扩展了一些功能模块,但是貌似好久没有更新了,最新更新的时间还是2020年。

主要模块说明:

模块描述
SpringFox Swagger2swagger2核心功能,不带界面
SpringFox Swagger UIswagger2展示UI,自动获取JSON数据,并展示
SpringFox Boot Starter集成启动swagger2服务,这时候无需在配置文件中添加@EnableSwagger2
SpringFox Bean Validators验证功能,可以对请求参数进行校验
SpringFox CoreSpringFox核心包,封装了一些常用实例
SpringFox Spring WebSpringFox针对Spring Web的核心操作,初始化也在此模块中
SpringFox SPISpringFox一系列Plugin接口声明
SpringFox Swagger CommonSpringFox 常见功能,Plugin功能的实现
SpringFox Spring WebMVCSpringFox针对Spring WebMVC的核心操作
SpringFox Schema常见方法实现类

其它还有一些不常见的模块不一一介绍了,有需要的可以去官网查看

快速安装

安装swagger插件还是比较简单,主要分为以下步骤:

  • 在pom.xml文件中添加对应依赖:
<dependency>
   <groupId>io.springfox</groupId>
    <artifactId>springfox-swagger2</artifactId>
    <version>3.0.0</version>
</dependency>
<dependency>
    <groupId>io.springfox</groupId>
    <artifactId>springfox-swagger-ui</artifactId>
    <version>3.0.0</version>
</dependency>
<dependency>
    <groupId>io.springfox</groupId>
    <artifactId>springfox-bean-validators</artifactId>
    <version>3.0.0</version>
</dependency>
<dependency>
    <groupId>io.springfox</groupId>
    <artifactId>springfox-boot-starter</artifactId>
    <version>3.0.0</version>
</dependency>
  • 配置Swagger启动:
@Configuration
//@EnableSwagger2
public class SwaggerConfig {
    @Bean
    public Docket api() {
        return new Docket(DocumentationType.SWAGGER_2)
                .select()
                .apis(RequestHandlerSelectors.any())
                .paths(PathSelectors.any())
                .build();
    }

    @Bean
    public WebMvcEndpointHandlerMapping webEndpointServletHandlerMapping(WebEndpointsSupplier webEndpointsSupplier, ServletEndpointsSupplier servletEndpointsSupplier, ControllerEndpointsSupplier controllerEndpointsSupplier, EndpointMediaTypes endpointMediaTypes, CorsEndpointProperties corsProperties, WebEndpointProperties webEndpointProperties, Environment environment) {
        List<ExposableEndpoint<?>> allEndpoints = new ArrayList();
        Collection<ExposableWebEndpoint> webEndpoints = webEndpointsSupplier.getEndpoints();
        allEndpoints.addAll(webEndpoints);
        allEndpoints.addAll(servletEndpointsSupplier.getEndpoints());
        allEndpoints.addAll(controllerEndpointsSupplier.getEndpoints());
        String basePath = webEndpointProperties.getBasePath();
        EndpointMapping endpointMapping = new EndpointMapping(basePath);
        boolean shouldRegisterLinksMapping = this.shouldRegisterLinksMapping(webEndpointProperties, environment, basePath);
        return new WebMvcEndpointHandlerMapping(endpointMapping, webEndpoints, endpointMediaTypes, corsProperties.toCorsConfiguration(), new EndpointLinksResolver(allEndpoints, basePath), shouldRegisterLinksMapping, null);
    }

    private boolean shouldRegisterLinksMapping(WebEndpointProperties webEndpointProperties, Environment environment, String basePath) {
        return webEndpointProperties.getDiscovery().isEnabled() && (StringUtils.hasText(basePath) || ManagementPortType.get(environment).equals(ManagementPortType.DIFFERENT));
    }
}

由于使用了springfox-boot-starter,所以可以省略@EnableSwagger2标签,也可以去除此依赖,打开@EnableSwagger2标签。

新版本springboot整合会有问题,问题解决方案请参考我写的另外一篇文章,《springboot及swagger整合报错:documentationPluginsBootstrapper》

  • 启动应用访问

正常启动不报错,访问http://localhost:8088/swagger-ui/,能够看到如下界面:

在这里插入图片描述
至此,swagger2整合完毕,接下来,再详细学习一下针对swagger2的详细配置及高级使用技巧。

  Java知识库 最新文章
计算距离春节还有多长时间
系统开发系列 之WebService(spring框架+ma
springBoot+Cache(自定义有效时间配置)
SpringBoot整合mybatis实现增删改查、分页查
spring教程
SpringBoot+Vue实现美食交流网站的设计与实
虚拟机内存结构以及虚拟机中销毁和新建对象
SpringMVC---原理
小李同学: Java如何按多个字段分组
打印票据--java
上一篇文章      下一篇文章      查看所有文章
加:2022-10-22 21:01:38  更:2022-10-22 21:03:27 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2025年1日历 -2025/1/30 13:18:01-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码