Skip to content

Instantly share code, notes, and snippets.

@altfatterz
Created October 21, 2014 19:59
Show Gist options
  • Select an option

  • Save altfatterz/ccb9ef094e3b777263b2 to your computer and use it in GitHub Desktop.

Select an option

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