java
JsonInclude 속성
도마_
2022. 4. 8. 22:13
@JsonInclude(JsonInclude.Include.NON_NULL) 을 추가해 주면 null인 데이터는 json결과에 포함되지 않게 됩니다.
(*설정 가능한 값 종류)
- NON_NULL
- ALWAYS (default)
- NON_ABSENT
- NON_EMPTY
- NON_DEFAULT
- CUSTOM
- USE_DEFAULTS
Ref.
[https://alwayspr.tistory.com/31]