Search Interview Questions | More than 3000 questions in repository. There are more than 900 unanswered questions. Click here and help us by providing the answer. Have a video suggestion. Click Correct / Improve and please let us know. |
|
| ||||
Hibernate - Interview Questions and Answers for 'Entity annotation' - 2 question(s) found - Order By Newest | ||||
| ||||
Ans. The first annotation will try to map the Class with the Table as of same name as Class whereas the second annotation will specify the Entity name as "EMPLOYEES" and hence will try to map with Table Name "EMPLOYEES". | ||||
Help us improve. Please let us know the company, where you were asked this question : | ||||
Like Discuss Correct / Improve  hibernate   hibernate annotations   entity annotations | ||||
Related Questions | ||||
What is the use of @GeneratedValue annotation in Hibernate? | ||||
What entries we make in the hibernate config file if we are not using hbm files but Annotations ? | ||||
What is the difference between these 2 annotations ? @Entity ( name ="EMPLOYEES") @Entity @Table ( name=""EMPLOYEES"" ) @Entity ( name="EMP") @Table ( name="EMPLPYEES" ) | ||||
| ||||
Ans. First Annotation will set the Entity name as EMPLOYEES and hence will try to map with the same Table name. The second annotation will make the Entity mapped to table EMPLOYEES irrespective of the Entity Name ( which is class name in this case ). Third Annotations will set the different names for Enitity and Table and will explicitly map them. | ||||
Help us improve. Please let us know the company, where you were asked this question : | ||||
Like Discuss Correct / Improve  hibernate   hibernate annotations   entity annotation   table annotation | ||||
Related Questions | ||||
What is the difference between these 2 annotations ? @Entity @Entity ( name="EMPLOYEES" ) | ||||