Failed to start bean ‘documentationPluginsBootstrapper‘nested exception is java.lang.NullPointerExce

2021/12/5 1:18:10

本文主要是介绍Failed to start bean ‘documentationPluginsBootstrapper‘nested exception is java.lang.NullPointerExce,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

       Springboot 整合swagger

SpringBoot 版本为2.6.2  swagger 版本为2.9.2

导入依赖

<dependency>
            <groupId>io.springfox</groupId>
            <artifactId>springfox-swagger-ui</artifactId>
            <version>2.9.2</version>
        </dependency>

        <dependency>
            <groupId>io.springfox</groupId>
            <artifactId>springfox-swagger2</artifactId>
            <version>2.9.2</version>
        </dependency>

Swagger配置类

@Configuration
@EnableSwagger2         //开启swagger2
public class SwaggerConfig {


}

运行报错

Failed to start bean 'documentationPluginsBootstrapper'; nested exception is java.lang.NullPointerException

解决版本Springboot版本太高降低Springboot版本 降低到2.5.6

    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>2.5.6</version>
        <relativePath/> <!-- lookup parent from repository -->
    </parent>

运行问题解决

访问swagger-ui.html页 Swagger UIicon-default.png?t=LA92http://localhost:8080/swagger-ui.html

 



这篇关于Failed to start bean ‘documentationPluginsBootstrapper‘nested exception is java.lang.NullPointerExce的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程