其他分享
首页 > 其他分享> > [Solved] Swagger Startup Error: Failed to start bean ‘documentationPluginsBootstrapper‘

[Solved] Swagger Startup Error: Failed to start bean ‘documentationPluginsBootstrapper‘

作者:互联网

在SpringBoot配置Swagger时,出现报错

org.springframework.context.ApplicationContextException: Failed to start bean ‘documentationPluginsBootstrapper’; nested exception is java.lang.NullPointerException
```
原因时SpringBoot的版本和Swagger的版本不匹配。在2.6.2的 SpringBoot时,Springfox使用path matching base on AntPathMatcher,而SpringBoot使用 PathPatternMatcher。

解决方案
1.回退Spring版本
2.配置yaml配置文件
![](https://www.icode9.com/i/l/?n=22&i=blog/2879849/202205/2879849-20220524111736679-930940480.png)

标签:SpringBoot,Solved,Startup,start,Failed,bean,2879849,Swagger,documentationPlugins
来源: https://www.cnblogs.com/frankLiang442/p/16304865.html