본문 바로가기
백엔드/Spring

[Spring Swagger3.0] Failed to start bean 'documentationPluginsBootstrapper'; nested exception is java.lang.NullPointerException

by 작은소행성 2022. 11. 10.

spring boot 2.6 버전 이후에 spring.mvc.pathmatch.matching-strategy 값이 ant_apth_matcher에서 path_pattern_parser로 변경되면서 몇몇 라이브러리(swagger포함)에 오류가 발생한다고 한다.

application.yaml 에 아래 내용을 추가해주면 된다. 

 

spring:
  mvc:
    pathmatch:
      matching-strategy: ant_path_matcher

 

 

반응형