Springboot - java.lang.IllegalArgumentException: 'Content-Type' cannot contain wildcard type '*'
2019. 10. 23. 21:33ㆍWeb/Spring
응답으로 나가는 Object에 getter가 존재하지 않아서 Response Content-type을 추론하지 못했다. 그래서 필터 단에서 임의로 DefaultMediaType으로 */*? * 로 넣어버리지만 사실 Content-Type에 wildCard는 들어가지 못한다. 즉, 예외발생!
'Web > Spring' 카테고리의 다른 글
Springboot - Webflux WebClient Cancelled가 나는 상황("The subscription was cancelled") (0) | 2020.02.20 |
---|---|
Spring - Spring Data Reactive mongo MongoCustomConversions 예제 (0) | 2020.02.03 |
Spring - ResponseBodyAdvice를 이용한 응답값 가공! (0) | 2019.10.18 |
Springboot - Custom Annotation(커스텀 어노테이션)과 Interceptor를 이용한 컨트롤러 인증.(컨트롤러 전처리, 후처리) (0) | 2019.10.12 |
Springboot - Springboot MVC Test(JUnit) (0) | 2019.10.10 |