首页 > 基础资料 博客日记
Failed to start bean ‘documentationPluginsBootstrapper‘; nested exception is java.lang.NullPointerEx
2023-07-24 17:43:56基础资料围观1717次
文章Failed to start bean ‘documentationPluginsBootstrapper‘; nested exception is java.lang.NullPointerEx分享给大家,欢迎收藏Java资料网,专注分享技术知识
Failed to start bean 'documentationPluginsBootstrapper'; nested exception is java.lang.NullPointerException
一、报错问题
报错信息:
Failed to start bean ‘documentationPluginsBootstrapper’; nested exception is java.lang.NullPointerException

二、问题发生背景
Spring Boot 整合 Swagger,用于生成 Web API 文档。
版本信息:spring boot:2.7.6,swagger:2.8.0
三、原因分析
springboot 升级到 2.6.0之后,swagger版本和springboot出现了不兼容情况,因为SpringBoot处理映射匹配的默认策略发生变化:
请求路径与 Spring MVC 处理映射匹配的默认策略已从AntPathMatcher更改为PathPatternParser
1. springboot 2.6.0之前:
public static class Pathmatch {
private MatchingStrategy matchingStrategy = MatchingStrategy.ANT_PATH_MATCHER;
}
2.springboot2.6.0之后
public static class Pathmatch {
private MatchingStrategy matchingStrategy = MatchingStrategy.PATH_PATTERN_PARSER;
}
四、解决方案
方案一:修改配置文件(最优,亲测)
升级springboot到2.6之后,需要修改配置文件来兼容Swagger2
application.properties:
spring.mvc.pathmatch.matching-strategy=ant_path_matcher
application.yml:
spring:
mvc:
pathmatch:
matching-strategy: ant_path_matcher
方案二:统筹规划SpringBoot和Swagger版本
swagger版本问题,升级3.0版本
或者
降低Spring Boot 版本,比如可以考虑将Spring Boot版本降低为2.5.6
文章来源:https://blog.csdn.net/Song22311974/article/details/130942893
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若内容造成侵权/违法违规/事实不符,请联系邮箱:jacktools123@163.com进行投诉反馈,一经查实,立即删除!
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若内容造成侵权/违法违规/事实不符,请联系邮箱:jacktools123@163.com进行投诉反馈,一经查实,立即删除!
标签:
相关文章
最新发布
- 洛谷 P3375 【模板】KMP 题解
- 曝华为"白嫖"开源团队技术方案事件——网友评论总结
- 洛谷-P7998 [WFOI - 01] 猜数 题解
- AI 相关概念之(基础层级):AI、ANI、AGI、ASI
- 深度解读 AEC-Q100 Rev-J:为什么先进制程芯片的 ESD 电压降低?车规标准“放水”了?
- 硅基流动 vs OpenRouter——两种AI Infra模式的取舍
- Vector 选型与实战:vs OTel / Logstash / Fluentd 全维对比,及统一日志与指标管道的 AWS ECS 落地
- "MixFormer: Co-Scaling Up Dense and Sequence in Industrial Recommenders" 论文笔记
- 开源分享|用MicroPython 做了个 AI 小鸡,它会长大,还记得我所有的情绪
- HEIC图片转换器(HEIC转JPG/PNG/WEBP/BMP/TIFF/ICO)

