Failed to start bean ‘documentationPluginsBootstrapper’; nested exception is java.lang.NullPointerException
这是整合Swagger3出现的错误,可以降低版本或者使用下面配置的方式
解决
@Configuration /** * 解决springboot版本太高问题 */ @EnableWebMvc @EnableOpenApi public class SwaggerConfig { }