@javax.persistence.OneToMany

Extract of the annotation reference in the Hibernate Developer Guide by example
Extensive, easy-to-follow introduction to Hibernate 3 including complete working examples. Integration of Hibernate with other technologies like Spring, EJB3, Struts and JavaServer Faces (MyFaces) is explained.
It is available as PDF in English language.
A German paper book was published by the Galileo Verlag.
|
definiert eine 1:n Beziehung
|
|
targetEntity = Invoice1.class, |
definiert die andere Seite der Beziehung; die Angabe |
|
cascade = {CascadeType.ALL}, |
Array von CascadeType � siehe Kapitel |
|
fetch=FetchType.LAZY , |
legt fest, ob die andere Seite der Beziehung erst |
|
mappedBy=“otherSideProperty” |
legt fest, dass in einer bidirektionalen Beziehung, |
|
) |
|
|
@OneToMany @JoinColumn(name=“club_id”, private |
|