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>>(){});

 

반응형
Comments