[Spring] Jackson annotation - Deserialization 알아보기


[Spring] Jackson annotation - Deserialization 알아보기

지난 번에 직렬화 관련해서 글을 작성했었어서, 이번에는 Jackson에서 제공하는 역직렬화 기능에 대해서 공부해보고자 한다. ️ Deserialization Deserialization is the process of reconstructing a data structure or object from a series of bytes or a string in order to instantiate the object for consumption. 역직렬화는 data structure나 객체를 일련의 바이트나 문자열로 재구성하여 사용할 수 있도록 인스턴스화하는 프로세스이다. 직렬화의 반대라고 볼 수 있으며, 변환된 데이터를 장치간의 저장이나 전송하는 것이다. Jackson에서는 어떤 어노테이션을 통해 역직..


원문링크 : [Spring] Jackson annotation - Deserialization 알아보기