错误:
org.springframework.context.ApplicationContextException: Failed to start bean 'documentationPluginsBootstrapper'; nested exception is java.lang.NullPointerException
翻译:
org.springframework.context.ApplicationContextException:未能启动bean“documentationPluginsBootstrapper”;嵌套异常为java.lang.NullPointerException
原因:
原因是因为pom文件中Springboot的版本太高导致的,我使用的是:2.6.13
解决:
降低springboot的版本
推荐使用
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.3.0.RELEASE</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>