SpringBoot集成Swagger报错:nested exception is java.lang.NullPointerException,通过knife4j增强swagger

SpringBoot集成Swagger报错:nested exception is java.lang.NullPointerException,通过knife4j增强swagger,第1张

SpringBoot集成Swagger报错:nested exception is java.lang.NullPointerException,通过knife4j增强swagger

使用SpringBoot集成Swagger后,运行报错:Failed to start bean ‘documentationPluginsBootstrapper’; nested exception is java.lang.NullPointerException

这里是版本的问题,因为Springfox使用的路径匹配是基于AntPathMatcher的,而Spring Boot 2.6.X使用的是PathPatternMatcher。
解决方法有两种:

第一:降低springboot版本:
把springboot回退到2.5.6就能正常启动
第二:修改配置文件:增加
spring.mvc.pathmatch.matching-strategy=ANT_PATH_MATCHER

访问http://localhost:8001/swagger-ui.html 成功集成:

通过knife4j增强Swagger,界面更美观,功能也强大:
增加依赖:


            com.github.xiaoymin
            knife4j-spring-boot-starter
            2.0.4
        

swagger配置类上面加注解:
@EnableKnife4j

访问http://localhost:8001/doc.html 成功集成:

参考链接:Failed to start bean ‘documentationPluginsBootstrapper‘; nested exception is java.lang.NullPointerEx

springboot集成swagger3出现如下错误:Failed to start bean ‘documentationPluginsBootstrapper‘; nested exception

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5709705.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-17
下一篇 2022-12-17

发表评论

登录后才能评论

评论列表(0条)

保存