当前位置:   article > 正文

一篇搞定SpringBoot任意版本集成Swagger各种版本_springboot对应swagger版本

springboot对应swagger版本
        引言:喜欢自学的新手们,在学习Swagger生成API文档的时候经常会遇到问题,而目前市面上大部分技术分享者的SpringBoot版本并没和我们的同步,导致一些一模一样的代码,在我们的项目上却无法使用,这是一个经常性的问题,本文章就旨在和大家列举几种常用的项目搭配,来解决访问网址:http://localhost:8080/swagger-ui/index.html 报错“Error Page”的问题。

       首先声明一下使用 Spring Boot 2.7 及以上版本时,Swagger 2.9.2会有一些兼容性问题,很有可能在项目运行前我们就饮恨于此了。

        比较常见的几个错误:

1、“org.springframework.context.ApplicationContextException: Failed to start bean 'documentationPluginsBootstrapper'; nested exception is java.lang.NullPointerException”

2、“Failed to start bean 'documentationPluginsBootstrapper'

3、“Caused by: java.lang.NullPointerException: null”。

      简单的解决办法: 
  1. 版本对应(Maven官方仓库:https://mvnrepository.com/

       ①SPB(SpringBoot) 2.7 以下 + Swagger-ui 和Swagger2 2.9.2

       ②SPB(SpringBoot) 2.7 往上 + springfox-boot-starter(3.0.0包括Swagger-ui 和Swagger2 3.0.0)

  1. 直接改用Springdoc OpenAPI

补充性说明

一、低版本过程性搭建
1、依赖展示
  1. <properties>
  2. //……省略
  3.     <spring-boot.version>2.5.3</spring-boot.version>
  4. </properties>
  5.   //……省略
  6. <dependency>
  7.     <groupId>org.springframework.boot</groupId>
  8.     <artifactId>spring-boot-dependencies</artifactId>
  9.     <version>${spring-boot.version}</version> 
  10.     <type>pom</type>
  11.     <scope>import</scope>
  12. </dependency>
  13. <dependency>
  14.     <groupId>io.springfox</groupId>
  15.     <artifactId>springfox-swagger2</artifactId>
  16.     <version>2.9.2</version>
  17. </dependency>
  18. <dependency>
  19.     <groupId>io.springfox</groupId>
  20.     <artifactId>springfox-swagger-ui</artifactId>
  21.    <version>2.9.2</version>
  22. </dependency>
2、配置Swagger

    (1)最小环境搭建

*注意低版本url:http://localhost:8080/swagger-ui.html

*注意高版本url:http://localhost:8080/swagger-ui/index.html

  1. ​​​​​​​import org.springframework.context.annotation.Configuration;
  2. import springfox.documentation.swagger2.annotations.EnableSwagger2;
  3. @EnableSwagger2
  4. @Configuration  // 注入spring boot
  5. public class SwaggerConfig {
  6. } // 只用这几行代码就可以运行
二、高版本过程性搭建
1、依赖展示
  1. //……省略
  2. <spring-boot.version>2.7.6</spring-boot.version>
  3. // ……省略
  4. <dependency>
  5. <groupId>io.springfox</groupId>
  6. <artifactId>springfox-boot-starter</artifactId>
  7. <version>3.0.0</version>
  8. </dependency>
2、配置Swagger

    (1)最小环境搭建

重要:修改配置文件!修改配置文件!修改配置文件!重要的事说三遍!!!

  1. # application.properties写法
  2. # Spring Boot 2.6.X版本引入了新的路径匹配策略,这导致了与Springfox的不兼容。
  3. # Spring Boot使用PathPatternMatcher作为默认的路径匹配策略,而Springfox依赖于
  4. # AntPathMatcher。所以做以下修改:
  5. spring.mvc.pathmatch.matching-strategy=ANT_PATH_MATCHER

*注意低版本url:http://localhost:8080/swagger-ui.html

*注意高版本url:http://localhost:8080/swagger-ui/index.html

  1. import org.springframework.context.annotation.Configuration;
  2. import springfox.documentation.oas.annotations.EnableOpenApi;
  3. @EnableOpenApi // config文件只改变了这里哦
  4. @Configuration // 注入spring boot
  5. public class SwaggerConfig {
  6. }
三、Springdoc OpenAPI高低环境搭建

       得多皮才非得高配低、低配高啊?我可没这闲工夫再写了,上面两种解决方法自己排列组合试去吧

四、配置Swagger

        以上所有SwaggerConfig配置类都是默认情况,下面简单分享一下自定义配置项。

  1. @EnableOpenApi
  2. @Configuration // 注入spring boot
  3. public class SwaggerConfig {
  4. @Bean // 要想配置生效必须注入
  5. public Docket createRestApi() {
  6. return new Docket(DocumentationType.SWAGGER_2)
  7. .apiInfo(apiInfo())
  8. .select()
  9. .apis(RequestHandlerSelectors.basePackage("com"))
  10. .paths(PathSelectors.any())
  11. .build();
  12. }
  13. private ApiInfo apiInfo()
  14. {
  15. return new ApiInfoBuilder()
  16. .title("Spring Boot2.7.6中使用Swagger3.0.0构建RESTful APIs")
  17. .description("我可是描述信息哈~~更多Spring Boot相关文章请关注:http://blog.didispace.com/")
  18. .version("8.0")
  19. .build();
  20. }
  21. }

​​​​​​​

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/酷酷是懒虫/article/detail/925126
推荐阅读
相关标签
  

闽ICP备14008679号