我有一个具有Id属性的实体“任务”,但是我不需要在JSON文件中返回该字段。
@Entity
public class Task {
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
@JsonIgnore
private Integer Id;
@JsonProperty("task")
private String taskName;
private String status;
//getter and setter
}
但是,当我发出get请求时,注释@JsonIgnore不会过滤该字段,请参见下文:
{
"status": "started",
"timestamps": {
"submitted": "2018-12-31T00:34:20.718+0000",
"started": "2018-12-31T00:34:20.718+0000",
"completed": "2018-12-31T00:34:20.718+0000"
},
"id": 40001,
"task": "q094hiu3o"
}
防止显示“ Id”的正确方法是什么?
最佳答案
所以这是jackson
与hibernate
issue有关的问题,请尝试在类级别使用@jsonIgnoreProperties
@JsonIgnoreProperties(ignoreUnknown = true,
value = {"id"})