728x90

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

 

728x90