休眠映射:
我有以下两个课程:
class Employee{
int empId;
string name;
float salary;
Department dept;
// ... getters and setters....
}
class Department{
int deptId;
string deptName;
// ....and other details, getter and setters..
}
现在我只有员工表
table Employee(EmpId number, Name varchar, salary number,deptId number)
不需要保留表格,Department
因为我只对使用部门 ID 存储员工数据感兴趣。
我正在寻找hibernate mapping
多对一、一对一、一对多但都需要dept data
单独存储table
。
我的问题:有没有办法只保留简单的映射文件以及我可以deptId
从哪里Department class
访问Employee mapping
?
谢谢