Json处理时需要注意的那些事儿 Posted on 2018-09-12 Edited on 2020-11-03 In 积累 Symbols count in article: 225 Reading time ≈ 1 mins. Json处理过程中遇到的坑 @JsonIgnore12345678910111213@Datapublic class Student { private String name; private String age; private String gender; …… @JsonIgnore public boolean isName() { …… }} (忽略命名规范)上述代码在序列化、反序列化时,都会导致name属性被忽略。 除非在属性上添加@JsonProperty。