jackson @JsonIgnore注解(忽略属性) 作者:马育民 • 2020-10-03 13:31 • 阅读:10178 # 作用 告诉 Jackson 在处理时忽略该注解标注的 java pojo 属性, 不管是将 java 对象转换成 json 字符串,还是将 json 字符串转换成 java 对象。 # 例子 ``` import com.fasterxml.jackson.annotation.JsonIgnore; public class Student { private String id; private String username; private String password; //转换时忽略该属性 @JsonIgnore private Date createTime; //转换时忽略该属性 @JsonIgnore private Date updateTime; public String getId() { return id; } public void setId(String id) { this.id = id; } public String getUsername() { return username; } public void setUsername(String username) { this.username = username; } public String getPassword() { return password; } public void setPassword(String password) { this.password = password; } public Date getCreateTime() { return createTime; } public void setCreateTime(Date createTime) { this.createTime = createTime; } public Date getUpdateTime() { return updateTime; } public void setUpdateTime(Date updateTime) { this.updateTime = updateTime; } } ``` 原文出处:http://malaoshi.top/show_1EF6N4U5gt5t.html