问题描述
今天写博客的时候,想配置下swagger用用,按照我原来项目的配置报错
Failed to start bean ‘documentationPluginsBootstrapper’; nested exception is java.lang.NullPointerException
原因分析:
springboot 升级到 2.6.0之后,swagger版本和springboot出现了不兼容情况。我之前的项目的springboot版本是2.3.7现在用的2.6.4出现了不兼容。
解决方案:
方案一: 在启动类 或 配置类 添加注解@EnableWebMvc
方案二: 在 application.properties 配置文件添加配置: properties spring.mvc.pathmatch.matching-strategy=ant_path_matcher
**方案三:**降低spring boot版本如我将springboot版本降回我之前常用的2.3.7
说在最后
安全申明:本人才疏学浅,若有任何谬误,欢迎指正