Skip to content

Instantly share code, notes, and snippets.

@evonsdesigns
Created May 22, 2018 16:28
Show Gist options
  • Save evonsdesigns/a336970f2677c898da0d2690c1ea540a to your computer and use it in GitHub Desktop.
Save evonsdesigns/a336970f2677c898da0d2690c1ea540a to your computer and use it in GitHub Desktop.
@Entity
public class Person {
@OneToMany(targetEntity = com.data.Address.class, fetch = FetchType.EAGER, cascade = CascadeType.ALL)
private List<Address> addresses;
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment