Пример: у меня есть проект Spring Boot, HSQLB, JPARepository с
@Entity
public class LetterEntity{
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
private int id;
private AddressEntity fromAddress;
private AddressEntity toAddress;
}
@Entity
public class AddressEntity {
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
@Column(name = "id")
private int id;
private LetterEntity letter;
}
Итак, у каждой буквы есть два поля типа AddressEntity. У каждого AddressEntity есть поле своего LetterEntity.
Как мне установить отношения отображения и каскадирование?