일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 예제
- r
- 2차원 리스트
- 안스
- 맛집
- 점심
- JavaScript
- 방법
- CodeUP
- 버튼 이벤트
- 코드업
- 안드로이드 스튜디오
- 27G2
- JDK 8
- 자바
- spring boot
- 파이썬
- 반복문
- 설정
- 자바스크립트
- 출력
- Android Studio
- 안드로이드
- 변경
- 시작
- 에러
- 리팩터링
- java
- python
- 설치
Archives
- Today
- Total
기루 기룩 기록
[JAVA] Response - Null 제외(@JsonInclude) 본문
반응형
@JsonInclude 어노데이션을 사용해 Response에 포함될 필드를 설정할 수 있다.
Include.ALWAYES.. 등과 함께 사용한다.
public static enum Include {
ALWAYS,
NON_NULL,
NON_ABSENT,
NON_EMPTY,
NON_DEFAULT,
CUSTOM,
USE_DEFAULTS;
private Include() {
}
}
예시
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonInclude.Include;
@JsonInclude(Include.NON_NULL)
public class CategoryResponseModel {
private final String type;
private final String name;
private final String icon;
public CategoryResponseModel(CategoryDTO categoryDTO) {
this.type = categoryDTO.getType();
this.name = categoryDTO.getName();
this.icon = categoryDTO.getIcon();
}
public String getType() {
return type;
}
public String getName() {
return name;
}
public String getIcon() {
return icon;
}
}
반응형