FilterProvider 썸네일형 리스트형 [Spring Boot] JsonIgnore, JsonIgnoreProperty, JsonFilter /* 사용 이유 */ 클라이언트에게 보내면 위험한 데이터가 있다. 따라서 @JsonIgnore, @JsonIgnoreProperties 아니면 @JsonFilter를 이용해 클라이언트에 데이터를 보낼 시 필터링 작업을 거칠 수 있다. /* 방법 1. @JsonIgnore - field2 가리기*/ public class SomeBean{ private String field1; @JsonIgnore private String field2; private String field3; public SomeBean(String field1, String field2, String field3){ this.field1 = field1; this.field2 = field2; this.field3 = field3;.. 더보기 이전 1 다음