Failed to start bean ‘documentationPluginsBootstrapper‘

时间:2024-11-07 22:46:18

一、报错问题

Failed to start bean ‘documentationPluginsBootstrapper’; nested exception is
在这里插入图片描述

二、问题背景

Spring Boot 整合 Swagger,用于生成 Web API 文档。

版本信息:spring boot:2.7.6,swagger:2.8.0

三、原因分析

springboot 升级到 2.6.0之后,swagger版本和springboot出现了不兼容情况。如下:

在这里插入图片描述

四、解决方案

方案一: 在启动类 或 配置类 添加注解@EnableWebMvc,下面以配置类添加为例:
在这里插入图片描述

方案二: 在 配置文件添加配置: properties -strategy=ant_path_matcher
在这里插入图片描述

方案三: 降低Spring Boot 版本,比如可以考虑将Spring Boot版本降低为2.5.6。

参考来源:

  • Failed to start bean ‘documentationPluginsBootstrapper‘; nested exception is
  • Springboot ✚ Swagger各版本整理