Failed to start bean ‘documentationPluginsBootstrapper’; nested exception is java.lang.NullPointer
Failed to start bean ‘documentationPluginsBootstrapper’; nested exception is java.lang.NullPointerException报错原因是swagger和springboot的版本不匹配了这是因为Springfox使用的路径匹配是基于AntPathMatcher的,而Spring Boot 2.6.X使用的是Pa
·
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>
更多推荐
已为社区贡献1条内容
所有评论(0)