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를 포함한 몇몇 라이브러리에 오류가 발생하게 되었다.
application.properties파일에
spring.mvc.pathmatch.matching-strategy = ANT_PATH_MATCHER
를 적어주면 해결이 된다.
spring-boot-starter-parent 를 2.5.6버전으로 downgrade
필자는 방법 1로 해결하였다.