Skip to content

Instantly share code, notes, and snippets.

@altfatterz
Created October 21, 2014 19:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save altfatterz/ccb9ef094e3b777263b2 to your computer and use it in GitHub Desktop.
Save altfatterz/ccb9ef094e3b777263b2 to your computer and use it in GitHub Desktop.
@Entity
public class Portal extends AbstractPersistable<Long> {
private String name;
@OneToMany(mappedBy = "portal", cascade = CascadeType.ALL)
private List<Page> pages;
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment