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)
붙여주면 된다. 끝!
'내가 배운 것들 > 문제 해결' 카테고리의 다른 글
[SpringBoot] JPA를 이용한 Delete가 실행되지 않는 현상 (0) | 2021.12.27 |
---|---|
[SpringBoot/Redis/Ubuntu] 우분투 환경에 Redis 설치, SpringBoot에 세팅 (0) | 2021.12.27 |
[RegExp] 아이디, 닉네임, 비밀번호 정규식 (1) | 2021.12.23 |
[QueryDSL/MySQL] QueryDSL로 MySQL에서 랜덤한 레코드 가져오기 (0) | 2021.12.22 |
[QueryDSL] Handler dispatch failed; nested exception is java.lang.NoSuchFieldError: TREATED_PATH (0) | 2021.12.22 |
댓글