当前位置: 代码迷 >> 综合 >> swagger 整合报错Failed to start bean ‘documentationPluginsBootstrapper’
  详细解决方案

swagger 整合报错Failed to start bean ‘documentationPluginsBootstrapper’

热度:48   发布时间:2023-12-03 00:29:22.0

1.启动报错

org.springframework.context.ApplicationContextException: Failed to start bean 'documentationPluginsBootstrapper';nested exception is java.lang.NullPointerException

2.解决办法

#在application.yml配置文件中添加如下:
spring:mvc: pathmatch: matching-strategy: ant_path_matcher

3.原因

        我使用的SpringBoot的版本是2.6.4,是因为SpringBoot中SpringMVC的默认策略从ANT_PATH_MATCHER 改成了PATH_PATTERN_PARSER所以就有错误了

  相关解决方案