Failed to start bean ‘documentationPluginsBootstrapper’; nested exception is java.lang.NullPointerException

报错原因是swagger和springboot的版本不匹配了

这是因为Springfox使用的路径匹配是基于AntPathMatcher的,而Spring Boot 2.6.X使用的是PathPatternMatcher。

解决方法

spring:
  mvc:
    pathmatch:
      matching-strategy: ant_path_matcher

添加依赖

<dependency>
   <groupId>com.google.guava</groupId>
   <artifactId>guava</artifactId>
   <version>28.2-android</version>
</dependency>

看的这位博主的文章

Logo

腾讯云面向开发者汇聚海量精品云计算使用和开发经验,营造开放的云计算技术生态圈。

更多推荐