开发喵星球

若依微服务子模块引入swagger出现Failed to start bean ‘documentationPluginsBootstrapper(181)

问题信息

引入swagger 出现

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

问题的可能解决方案

经过排查错误,检查依赖版本是否兼容、排除冲突的依赖、检查Swagger配置、清理缓存、检查文档注释等等。最后在启动类上添加注解@EnableCustomSwagger2 ,成功解决出现的问题。

@EnableCustomSwagger2 //添加这一行
@SpringBootApplication
public class RuoYiApplication
{
    public static void main(String[] args)
    {
        // System.setProperty("spring.devtools.restart.enabled", "false");
        SpringApplication.run(RuoYiApplication.class, args);
        System.out.println("(♥◠‿◠)ノ゙  若依启动成功   ლ(´ڡ`ლ)゙  \n" +
                " .-------.       ____     __        \n" +
                " |  _ _   \\      \\   \\   /  /    \n" +
                " | ( ' )  |       \\  _. /  '       \n" +
                " |(_ o _) /        _( )_ .'         \n" +
                " | (_,_).' __  ___(_ o _)'          \n" +
                " |  |\\ \\  |  ||   |(_,_)'         \n" +
                " |  | \\ `'   /|   `-'  /           \n" +
                " |  |  \\    /  \\      /           \n" +
                " ''-'   `'-'    `-..-'              ");
    }
}

这个注解在ruoyi-common-swagger模块的com.ruoyi.common.swagger.annotation中。

   
分类:Java/OOP 作者:无限繁荣, 吴蓉 发表于:2024-04-14 01:04:10 阅读量:88
<<   >>


powered by kaifamiao