-1
public class Customer{
@Id
private String customerId;
private String lastName;
private String firstName;
@OneToOne(cascade = CascadeType.ALL)
private Image profileImage;...
、Customer
クラスは二つのクラスのインスタンス変数で滞在することができます -ジャクソン@JsonIgnore - 上記の例取る複数使用
RandomClassA{
..
private Customer customer;
..
}
RandonClassB{
..
private Customer customer;
..
}
問題は、私は顧客を無視したいですImage
とその変数RandomClassA
にアクセスし、私はそれがRandonClassB
に表示することを行うための簡単な方法があります -上のいくつかの操作でおよびRandomClassB
である。