일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- Test
- 파이썬
- Python
- aggregation
- high level client
- TensorFlow
- Java
- springboot
- Elasticsearch
- aggs
- ELASTIC
- Kafka
- sort
- analyzer test
- matplotlib
- Mac
- zip 파일 암호화
- 900gle
- API
- flask
- plugin
- 차트
- license delete
- License
- docker
- licence delete curl
- zip 암호화
- token filter test
- query
Archives
- Today
- Total
개발잡부
Cannot invoke "org.springframework.web.servlet.mvc.condition.PatternsRequestCondition.toString()" 본문
JAVA/Troubleshooting
Cannot invoke "org.springframework.web.servlet.mvc.condition.PatternsRequestCondition.toString()"
닉의네임 2023. 8. 20. 22:34반응형
망할 스웨거
Cannot invoke "org.springframework.web.servlet.mvc.condition.PatternsRequestCondition.toString()"
원인은
spring boot 2.6.0부터 요청 경로를 ControllerHandler에 매칭시키기 위한 전략의 기본값이 ant_path_matcher 전략 -> path_pattern_parser 전략으로 변경되었기 때문
일단 해결 방법
spring:
mvc:
pathmatch:
matching-strategy: ant_path_matcher
2.5.x 이하로 버전을 낮추라고 하는데 낮춰도 안됨
// https://mvnrepository.com/artifact/io.springfox/springfox-swagger2
implementation 'io.springfox:springfox-swagger2:2.4.2'
// https://mvnrepository.com/artifact/io.springfox/springfox-swagger-ui
implementation 'io.springfox:springfox-swagger-ui:2.4.2'
이 사단의 이유 또한 인텔리제이의 업데이트
버전은 함부러 건드는게 아니라는 교훈을 얻음..
반응형
'JAVA > Troubleshooting' 카테고리의 다른 글
Bean 객체 RedisConnectionFactory 의 NullPointerException (0) | 2024.06.19 |
---|---|
class file major version 61 (0) | 2023.07.30 |
hibernate.properties not found (0) | 2023.04.12 |
Cannot change dependencies of configuration ':compile' after it has been resolved. (0) | 2023.02.19 |
Comments