@ResposeBody로 JSON 형식을 받을때,
jackson 2.x 에서는 null일 때 출력값이 null 항목 제거 표현시 Dto(Vo)에서 @JsonInclude(Include.NON_NULL) 어노테이션 사용.
ex)
@JsonInclude(include.NON_NULL)
public class DataDto {
private int idx;
private String id;
private String name;
.
.
.
}
'Programming > springFramework' 카테고리의 다른 글
[Spring] Ajax PUT 메서드 (0) | 2016.02.24 |
---|---|
[SrpingFrameWork]Json 406 error (0) | 2016.01.11 |
[MyBatis] error There is no getter for property named 'mbrId' in 'class java.lang.String' (0) | 2015.10.05 |
[Spring] export (0) | 2015.07.20 |
Spring 4.X 버전 (0) | 2015.07.09 |