잭슨 시리얼화: 빈 값 무시(또는 null) 현재 Jackson 2.1.4를 사용하고 있는데 객체를 JSON 문자열로 변환할 때 필드를 무시하는 데 문제가 있습니다. 다음은 변환할 오브젝트 역할을 하는 클래스입니다. public class JsonOperation { public static class Request { @JsonInclude(Include.NON_EMPTY) String requestType; Data data = new Data(); public static class Data { @JsonInclude(Include.NON_EMPTY) String username; String email; String password; String birthday; String coinsPackag..