DTO에서 null인 항목은 json에서 제거
DTO에서 null인 항목은 json에서 제거
@ToString
@Getter
@Setter
public class CodeDto {
private int code;
@JsonInclude(Include.NON_NULL)
private String codeName;
}
@ToString
@Getter
@Setter
public class CodeDto {
private int code;
@JsonInclude(Include.NON_NULL)
private String codeName;
}
댓글남기기