해당 클래스 전체의 직렬화 및 역직렬화를 무시하는 어노테이션이다.
아래와 같은 test 클래스에 name과 myEmail, age 타입이 있는 경우
@JsonIgnoreType public class test{ @JsonProperty("name") private String name; @JsonProperty(name = "email") private String myEmail; private int age; }