public class Customer{
@Id
private String customerId;
private String lastName;
private String firstName;
@OneToOne(cascade = CascadeType.ALL)
private Image profileImage;...
以上面的例子为例,让Customer
类成为两个类的实例变量 -
RandomClassA{
..
private Customer customer;
..
}
RandonClassB{
..
private Customer customer;
..
}
问题是我想在访问Image
时忽略客户的RandomClassA
及其变量,但我希望它显示为RandonClassB
有没有简单的方法 - 分别对RandomClassA
和RandomClassB
进行一些操作。
答案 0 :(得分:0)
找到解决方案
@JsonIgnoreProperties({"property1","property2"})