我是靠谱客的博主 暴躁夏天,最近开发中收集的这篇文章主要介绍springboot + swagger3 简单整合,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

1、首先还是新建springboot工程,导入相关依赖。

        <!--swagger3 文档-->
        <dependency>
            <groupId>io.springfox</groupId>
            <artifactId>springfox-boot-starter</artifactId>
            <version>3.0.0</version>
        </dependency>
        <!--swagger美化-->
        <dependency>
            <groupId>com.github.xiaoymin</groupId>
            <artifactId>swagger-bootstrap-ui</artifactId>
            <version>1.9.6</version>
        </dependency>

我是导入的swagger3,第一个springfox集成了swagger,第二个美化可有可无。

2、解决冲突

从springboot 2.6.x开始,就与swagger产生了冲突,这时我用了application.yml配置,暂时可用

spring:
  mvc:
    pathmatch:
      matching-strategy: ant_path_matcher

3、需要配置config


                

最后

以上就是暴躁夏天为你收集整理的springboot + swagger3 简单整合的全部内容,希望文章能够帮你解决springboot + swagger3 简单整合所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(39)

评论列表共有 0 条评论

立即
投稿
返回
顶部