引入@EnableSwagger2WebMvc后报Failed to start bean ‘documentationPluginsBootstrapper’; nested exception is java.lang.NullPointerException
修改yaml文件
spring:
mvc:
pathmatch:
matching-strategy: ant_path_matcher
原因:
在springboot2.6.0中将SpringMVC 默认路径匹配策略从AntPathMatcher 更改为PathPatternParser,导致出错,解决办法是切换会原先的AntPathMatcher。