我只想在某些情况下应用@JsonIgnore。
例如,在一种情况下,我可能只需要测试对象而不是测试中的所有问题。但在其他情况下,我可能还需要通过使用 @JsonManagedReference
class Test{
private string testName;
@ManyToOne(fetch=FetchType.LAZY)
@JoinColumn(name="abc")
@JsonIgnore
private Set<question> question;
}