Skip to content

Instantly share code, notes, and snippets.

@craigew
Created September 28, 2013 13:35
Show Gist options
  • Save craigew/6742150 to your computer and use it in GitHub Desktop.
Save craigew/6742150 to your computer and use it in GitHub Desktop.
Reference to address
@OneToOne(cascade = CascadeType.ALL, optional=false)
@JoinColumn(name="RESIDENTIAL_ADDRESS_ID")
private Address residentialAddress;
@OneToOne(cascade = CascadeType.ALL, optional=true)
@JoinColumn(name="POSTAL_ADDRESS_ID")
private Address postalAddress;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment