Spring Boot 공부하면서, swagger 연동 오류날 경우
org.springframework.context.ApplicationContextException: Failed to start bean 'documentationPluginsBootstrapper'; nested exception is java.lang.NullPointerException
이런 에러가 발생했습니다
현제 사용하는 버전은
springboot : 2.6.5
swagger : 3.0.0
Spring boot 2.6버전 이후에 spring.mvc.pathmatch.matching-strategy 값이 ant_apth_matcher에서 path_pattern_parser로 변경되면서 몇몇 라이브러리(swagger포함)에 오류가 발생할 수 있다고 합니다.
[해결방안]
resource폴더안에 application.yml 에 아래 설정을 추가하면 오류가 발생 안합니다.
spring:
mvc:
pathmatch:
matching-strategy: ant_path_matcher
'개발자 넋두리 > 코딩하다가..' 카테고리의 다른 글
IT관리자가 결과물을 평가할 때 고려해야 할 사항 (0) | 2023.04.11 |
---|---|
[프로프레임] core dump 확인하기. (0) | 2020.11.24 |
[될 때까지 안드로이드] 기초 다지기3 (Margin과 Padding의 차이) (0) | 2019.11.09 |
코딩의 진정한 고수란.. (0) | 2019.10.22 |
DB관련 유용한 사이트 모음 (0) | 2019.09.09 |