InterviewSolution
Saved Bookmarks
| 1. |
Explain Embeddable annotation. |
|
Answer» EJB 3.0 provides option to embed JAVA POJO (Plain Old Java Object) into an entity bean and allows to map column names with the methods of the embedded POJO class. A java POJO to be embedded must be annotated as Embeddable. |
|