Hello, Freakin world!

JSON 직렬화시 null 속성 무시하기(Jackson) 본문

프로그래밍 언어/Java

JSON 직렬화시 null 속성 무시하기(Jackson)

johnna_endure 2021. 4. 15. 21:14

www.baeldung.com/jackson-ignore-null-fields

 

Ignore Null Fields with Jackson | Baeldung

Ignore null fields with Jackson 2 - either globally, per class or even per field.

www.baeldung.com

 

import static com.fasterxml.jackson.annotation.JsonInclude.Include.*;

@JsonInclude(NON_NULL)
public class AuthenticationResponse {
...

클래스나 필드 레벨에서 @JsonInclude(NON_NULL) 을 사용해주면 된다.

Comments