首页 > 其他分享 >springboot启动报错:Failed to start bean ‘documentationPluginsBootstrapper‘

springboot启动报错:Failed to start bean ‘documentationPluginsBootstrapper‘

时间:2022-12-01 17:03:46浏览次数:72  
标签:springboot Failed start bean 报错 documentationPluginsBootstrapper

今天启动时,突然报了这个错误,网上查了下是springboot版本和swagger版本之间的问题,解决办法如下:
原因: 这是因为Springfox使用的路径匹配是基于AntPathMatcher的,而Spring Boot 2.6.X使用的是PathPatternMatcher。
解决方法: 在application.yml中添加

spring
 mvc:
    pathmatch:
      matching-strategy: ant_path_matcher

标签:springboot,Failed,start,bean,报错,documentationPluginsBootstrapper
From: https://www.cnblogs.com/hungryquiter/p/16941939.html

相关文章