PrimaryKeyJoinColumn: http://docs.jboss.org/hibernate/orm/5.4/userguide/html_single/Hibernate_User_Guide.html#identifiers-derived
{code:java} @OneToOne @PrimaryKeyJoinColumn // bug here: no FOREIGN KEY in table. private Person person; @OneToOne // will generate a FOREIGN KEY in table. private Person person2; {code} |
|