Failed to start bean 'documentationPluginsBootstrapper' in spring data rest

CinnamonTree·2022년 2월 8일
0

코드 오류

목록 보기
3/3

Swagger 연동 중 다음과 같은 에러가 발생하였다.

Failed to start bean 'documentationPluginsBootstrapper' in spring data rest

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

해결방법 1

application.properties파일에

spring.mvc.pathmatch.matching-strategy = ANT_PATH_MATCHER

를 적어주면 해결이 된다.

해결방법 2

spring-boot-starter-parent 를 2.5.6버전으로 downgrade

필자는 방법 1로 해결하였다.

0개의 댓글