| Author |
Collection mapping of Elements in JPA
|
Joe Harry
Ranch Hand
Joined: Sep 26, 2006
Posts: 8795
|
|
Guys,
This is regarding an example from the JPA book.
Where VacationEntry is marked with an Embedable annotation. My question is:
Is the Embedded annotation optional and that the ElementCollection is enough to make the Persistence Provider to be aware that vacationBookings is of Embedded type?
|
SCJP 1.4, SCWCD 1.4 - Hints for you, SCBCD Hints - Demnachst, SCDJWS - Auch Demnachst
Did a rm -R / to find out that I lost my entire Linux installation!
|
 |
Tamas Polgar
Greenhorn
Joined: Apr 27, 2011
Posts: 13
|
|
Hi there,
From JPA spec (http://download.oracle.com/javaee/6/api/javax/persistence/Embedded.html)
"Specifies a persistent field or property of an entity whose value is an instance of an embeddable class. The embeddable class must be annotated as Embeddable. "
For me it means you should use it for single attributes, not collections. Howewer, the annotation api doesnt deny it, and with eclipselink, and hibernate it works for me.
but in the xml api, which is better-defined, its not allowed.
So I think you should not use it,
the generic type, or the targetClass attribute of @ElementCollection is enough.
|
 |
 |
|
|
subject: Collection mapping of Elements in JPA
|
|
|