Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save osscontributor/d2938f63c6b1182dca7f2111f92afcfa to your computer and use it in GitHub Desktop.
Save osscontributor/d2938f63c6b1182dca7f2111f92afcfa to your computer and use it in GitHub Desktop.
class Person {
String name
Person parent
static belongsTo = [ supervisor: Person ]
static mappedBy = [ supervisor: "none", parent: "none" ]
static constraints = { supervisor nullable: true }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment