반응형
설정전 값.
보시는 바와 같이 비어있는 것도 null로 표시되어 나온다.
우선 jackson-annotations 이 필요하다. 여기서는 메이븐을 통해 추가한다
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-annotations</artifactId>
<version>2.8.5</version>
</dependency>
Bean에 다음의 어노테이션을 설정하면 제거해서 나온다.
@JsonInclude(Include.NON_NULL)
public class TestResponse {
반응형
'공부 > 프로그래밍' 카테고리의 다른 글
[Spring] UserException 만들어두기. (0) | 2017.05.26 |
---|---|
[Spring] return 할때 json으로 반환하는 방법. (0) | 2017.05.26 |
[spring] form에서 submit으로 날려도 한글이 깨지는 것 설정. (0) | 2017.05.10 |
angularjs로 modal (ui-bootstrap)을 띄우고 값 주고받기. (1) | 2017.05.04 |
[Spring] 익셉션 처리(@ControllerAdvice 사용) (0) | 2017.05.01 |
댓글