3
votes
2answers
2k views
Which anotation should I use: @IdClass or @EmbeddedId
The JPA (Java Persistence API) specification has 2 different ways to specify entity composite keys: @IdClass and @EmbeddedId.
I'm using both annotations on my mapped entities, but it turns …
1
vote
How to use Hibernate @Any-related annotations?
The @Any annotation defines a polymorphic association to classes from multiple tables. This type of mapping
always requires more than one column. The first column holds the type of the associated e …
