Recent Posts
Recent Comments
HEROJOON 블로그(히로블)
com.fasterxml.jackson.databind.exc.MismatchedInputException: Cannot deserialize value of type 'java.util.ArrayList' 오류 해결 본문
기타
com.fasterxml.jackson.databind.exc.MismatchedInputException: Cannot deserialize value of type 'java.util.ArrayList' 오류 해결
herojoon 2022. 10. 2. 23:54반응형
오류명
com.fasterxml.jackson.databind.exc.MismatchedInputException: Cannot deserialize value of type 'java.util.ArrayList'
해결방법
ObjectMapper objectMapper = new ObjectMapper();
objectMapper.enable(DeserializationFeature.ACCEPT_SINGLE_VALUE_AS_ARRAY); // list deserialization 기능 활성화
List<Order> orders = objectMapper.readValue(responseStr, new TypeReference<List<Order>>(){});
반응형
'기타' 카테고리의 다른 글
Edge 브라우저의 특정 페이지를 바탕화면 바로가기로 만들기 (1) | 2022.12.05 |
---|---|
AWS에서 도메인 구입하는 방법 (0) | 2022.10.23 |
ec2 SEVERE [main] org.apache.catalina.core.StandardService.initInternal Failed to initialize connector (0) | 2022.09.25 |
Tomcat Port 변경하기 (0) | 2022.09.25 |
AWS EC2에 JDK 17 설치하기 (0) | 2022.09.14 |
Comments