Failed to start bean 'documentationPluginsBootstrapper'; 报错

56 阅读1分钟

Springboot2.6以后将SpringMVC 默认路径匹配策略从AntPathMatcher 更改为PathPatternParser,导致出错

设置配置文件,或者降低springboot版本为2.6以下

spring:
  mvc:
    pathmatch:
      matching-strategy: ANT_PATH_MATCHER