json 응답시 null값의 필드를 제외하고 보내고 싶어서 알아봤다..
@JsonInclude(JsonInclude.Include.NON_NULL)
해당 애노테이션은 class 또는 원하는 필드에 적용할 수 있다!물론 다양한 속성값도 제공한다
public class ExceptionResponseDto {
private int httpStatusCode;
private String message;
@JsonInclude(JsonInclude.Include.NON_NULL)
private String value;
애노테이션 적용해주니 한결 편안- 해졌다.🙃