다음과 같이 User를 JSON string 형태로 변환할 때 다음과 같이 코드를 작성합니다. import lombok.Getter; import lombok.Setter; @Getter @Setter public class User { private String userId; private String name; private String email; } package com.example.demo; import com.fasterxml.jackson.core.JsonProcessingException; import com.fasterxml.jackson.databind.ObjectMapper; public class TestUtil { public static void main(String[] arg..