본문 바로가기
내가 배운 것들/문제 해결

[SpringBoot] DTO 형식으로 반환해줄 때, NULL값은 숨긴 채로 되돌려주기

by Zabee52 2021. 12. 23.

DTO에서 NULL값 숨기기

@Getter
@Builder
@NoArgsConstructor
@AllArgsConstructor
@JsonInclude(JsonInclude.Include.NON_NULL)
public class DictHistoryRecentResponseDto {
    private Long historyId;
    private Long revertFrom;
    private String writer;
    private LocalDate createdAt;
}

@JsonInclude(JsonInclude.Include.NON_NULL)

붙여주면 된다. 끝!

댓글