I was asked how I would create a hibernate mapping for a column in a table that refers to the primary key of the table.
For example, an Employee table has EMP_ID as primary key and it also has MGR_ID column to know the manager of the employee. As a manager is also an Employee, it would be in the same table. Hence every Employee row has a manager Id which is also an employee.
- How do we create Hibernate Mapping for this Employee Class?
- How would the Employee class look like? Does it have just a manager Id in it or it will contain another Employee Object as a member variable.
Kindly help me with this kind of scenario. Thank you.