1. Jackson jackson은 Spring Boot에서 기본적으로 제공되는 JSON 직렬화 도구입니다. spring-boot-starter-json 모듈의 도구입니다. auto-configuration 기능으로 제공되는 도구입니다. 직렬화를 담당하는 클래스인 ObjectMapper가 자동으로 설정됩니다. Custom Serializers and Deserializers ObjectMapper는 JsonSerializer와 JsonDeserializer 클래스를 사용하여 직렬화 및 역직렬화를 담당합니다. @JsonComponent public class MyJsonComponent { public static class Serializer extends JsonSerializer { @Override..