InterviewSolution
Saved Bookmarks
| 1. |
Where Object/relational mappings are defined in hibernate? |
|
Answer» An Object/relational mappings are usually defined in an XML document. This mapping file instructs Hibernate how to map the defined class or classes to the database tables. We should save the mapping document in a file with the format <classname>.hbm.xml. |
|