java Programming Glossary: otherinfo
JPA Hibernate One-to-One relationship http://stackoverflow.com/questions/787698/jpa-hibernate-one-to-one-relationship public class Person @Id public int id @OneToOne public OtherInfo otherInfo rest of attributes ... Person has a one to one relationship.. attributes ... Person has a one to one relationship with OtherInfo @Entity public class OtherInfo @Id @OneToOne mappedBy otherInfo.. to one relationship with OtherInfo @Entity public class OtherInfo @Id @OneToOne mappedBy otherInfo public Person person rest of..
|