美文网首页
springboot 集成Swagger2报错解决

springboot 集成Swagger2报错解决

作者: 王宣成 | 来源:发表于2022-04-07 10:12 被阅读0次

Springfox使用的路径匹配是基于AntPathMatcher的,而Spring Boot 2.6.X使用的是PathPatternMatcher。
解决:修改application.yaml

错误:
Failed to start bean 'documentationPluginsBootstrapper'; nested exception is java.lang.NullPointerException: Cannot invoke "org.springframework.web.servlet.mvc.condition.PatternsRequestCondition.getPatterns()" because "this.condition" is null

spring:
  mvc:
    pathmatch:
      matching-strategy: ANT_PATH_MATCHER

相关文章

网友评论

      本文标题:springboot 集成Swagger2报错解决

      本文链接:https://www.haomeiwen.com/subject/cypjsrtx.html