Custom Jackson Annotation, Disable Jackson Annotation
- Jackson Annotation Examples 예제를 적용전, 적용후로 나누어서 정리 해봤습니다.
- 테스트코드도 참고하시면 좋습니다.
- 해당 코드 및 전체 Jackson 정리는 Github를 참고해주세요
Custom Jackson Annotation
- Annotation 직접 정리 할 수 있습니다.
1 |
|
1 | // 적용전 |
Disable Jackson Annotation
- 모든 Jackson annotation 비활성화 하는 방법
1 | (JsonInclude.Include.NON_NULL) |
1 | // MapperFeature.USE_ANNOTATIONS 적용전 |