傑克遜在現場級別上有@JsonIgnoreProperties
註釋,非常棒,但有時它可能很大。有沒有像@JsonIgnoreOtherProperties?
@JsonIgnoreProperties({ "name", "phone", ... "20th item"})
private User user;
我在尋找類似:
@JsonIgnoreOtherProperties("email")
private User user;
所以這會忽略所有字段,但電子郵件。
有沒有像@JsonIgnoreOtherProperties?