Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- MySQL
- Spring MVC 동작원리
- 재귀함수
- 코딩테스트
- List.of
- Array.asList
- 성능테스트툴
- 클라우드에서 도커 실행하기
- 투포인터알고리즘
- Spring MVC 구성요소
- 11659
- OOP
- 구간합구하기
- 스택
- 프로그래머스
- 자바
- 코드스테이츠
- 알고리즘
- 백준
- 코드스테이츠 백엔드
- 인텔리제이
- 버블정렬
- Spring Web MVC
- vm인스턴스생성
- 싱글톤패턴
- String.valueOf()
- 재귀와반복문
- GCP
- 백준 11659
- java
Archives
- Today
- Total
순간을 기록으로
Fix this pattern in your application or switch to the legacy parser implementation with 'spring.mvc.pathmatch.matching-strategy=ant_path_matcher'. 본문
Error
Fix this pattern in your application or switch to the legacy parser implementation with 'spring.mvc.pathmatch.matching-strategy=ant_path_matcher'.
luminous13 2022. 9. 22. 09:39에러로그
Description:
Invalid mapping pattern detected: /{/user-id}
^
Expected close capture character after variable name }
Action:
Fix this pattern in your application or switch to the legacy parser implementation with 'spring.mvc.pathmatch.matching-strategy=ant_path_matcher'.
원인
스프링 부트가 2.5에서 2.6으로 버전이 올라가면서 ControllerHandler 매칭 전략이 ant_path_matcher에서 path_pattern_parser로 변경되었기 때문이다.
해결
방법은 크게 2가지가 있다.
첫 번째는 application.properties에 명시적으로 매칭 전략을 ant_path_matcher로 설정한다.
spring.mvc.pathmatch.matching-strategy=ant_path_matcher
두 번째는 스프링부트 버전을 다운그레이드하여 2.5로 바꾸는 것이다.
스프링부트의 버전을 전체 다운하는 것보다는 매칭전략만 바꾸는게 변화가 적다는 점에서 더 안전하고 간편하여 나는 첫 번째 방법을 선택했다.
'Error' 카테고리의 다른 글
Comments