새끼 개발자의 Life is egg

ObjectMapper 에러 본문

개발's egg/Java

ObjectMapper 에러

현z 2023. 3. 1. 18:02

Type 'org.springframework.asm.TypeReference' does not have type parameters

이런거

 

InvocationTargetException

이런거

 

class java.util.LinkedHashMap cannot be cast to class ...

이런거

 

파라미터에 쓸데없는 필드 들어있어서 객체에 못들어간다고 그러는거같다

ObjectMapper mapper = new ObjectMapper()
        .configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false);

objectMapper에 없는 필드 무시하라는 configure 추가.

 

Comments