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

application.yml 에 아래 설정을 추가하면 오류가 발생 하지 않는다.

 

spring:

  mvc:

    pathmatch:

      matching-strategy: ant_path_matcher

 

 

https://www.inflearn.com/questions/230160

 

swagger 연동을 할려고 하는데 에러가 발생합니다 - 인프런 | 질문 & 답변

지금 현재 swagger 해보고 있는데  org.springframework.context.ApplicationContextException: Failed to start bean 'documentationPluginsBootstrapper'; nested exc...

www.inflearn.com

 

+ Recent posts