본문 바로가기
개발오류

[Spring boot] swagger 에러 - Failed to start bean 'documentationPluginsBootstrapper'; nested exception is java.lang.NullPointerException

by 디토20 2023. 2. 2.
반응형

 

 

[Spring boot] swagger 에러

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

 

 

implementation("io.springfox:springfox-boot-starter:3.0.0")

Spring boot 2.7.8 버전에 swagger 3.0.0 버전을 붙이고 실행을 시켰는데 아래와 같은 에러가 발생했다.

 

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

해당 에러는 Spring boot 2.6버전 이후에서 종종 발생하는데,

spring.mvc.pathmatch.matching-strategy의 default 값이 ant_path_matcher -> path_pattern_parser로 변경되면서 몇몇 라이브러리에서 발생이 된다고 한다.

 

 

application.properties 에 아래의 내용을 추가해주면 에러를 해결 할 수 있다.

spring.mvc.pathmatch.matching-strategy=ant_path_matcher

 

728x90
반응형

댓글