@Validated, @JsonProperty

murkgom·2021년 6월 29일
0

1. @Valid -> @Validated

In Controller...
기존 : @Valid
변경 : @Validated({groupName.class})

  • 그룹 지정이 가능, 더 이상 post, patch inner class를 생성하지 않아도 된다.

2. @JsonIgnore -> @JsonProperty

@JsonIgnore의 문제점 : response는 잘 되는데, post, patch때도 무시됨
So,

@JsonProperty(access = Access.WRITE_ONLY)

로 처리!

0개의 댓글