@JsonIgnore 和@JsonIgnoreProperties 有什么区别

What is the difference between @JsonIgnore and @JsonIgnoreProperties

我需要了解这两个注释之间的主要区别:@JsonIgnore@JsonIgnoreProperties in Spring Boot.

提前致谢。

@JsonIgnore 是忽略字段级别使用的字段。同时,

@JsonIgnoreProperties 在class级别使用,用于忽略字段列表。

参考here了解更多信息