spring boot 2.6 버전 이후에 spring.mvc.pathmatch.matching-strategy 값이 ant_apth_matcher에서 path_pattern_parser로 변경되면서 몇몇 라이브러리(swagger포함)에 오류가 발생한다고 한다.
application.yaml 에 아래 내용을 추가해주면 된다.
spring:
mvc:
pathmatch:
matching-strategy: ant_path_matcher
반응형