[Spring] Jackson annotation - Serialization 알아보기


[Spring] Jackson annotation - Serialization 알아보기

문득 직렬화 관련해서 궁금해하다가, Jackson 라이브러리에 대해서도 한 번 공부해보면 좋을 것 같아서 작성하는 글! 정말 간단하고 얕게 정리할 예정이라, 나중에 깊게 공부하게 된다면 한 번 더 작성해보지 않을까 싶다 c ️ Serialization Serialization is taking the properties of an object, and converting them into json string representation. 직렬화란 무엇일까? 객체의 속성을 가져와서 Json 문자열 표현으로 변환하는 것을 의미한다. 정확하게는, 객체를 바이트 스트림으로 변환하는 것이며, 직렬화된 객체는 나중에 다시 복원이 가능하다. public class Crew { private String name; ..


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