Skip to content

Instantly share code, notes, and snippets.

@sebersole
Last active August 21, 2017 19:36
Show Gist options
  • Save sebersole/b886adbcc2d66a77e13ea45d81c51628 to your computer and use it in GitHub Desktop.
Save sebersole/b886adbcc2d66a77e13ea45d81c51628 to your computer and use it in GitHub Desktop.
@Entity(...)
class EpisodePerson {
@EmbeddedId
Id id;
@Enumerated
EpisodeRole episodeRole;
Episode getEpisode() {
return getId().getEpisode();
}
@Embeddable
class Id {
@ManyToOne
Episode episode;
@ManyToOne
Person person;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment