标签: java hibernate jpa
是否有可能存在具有一对多关系的嵌套实体。例如,
@Entity class Employee { @OneToMany List<Employee> emps; }
我有一种避免多张桌子的用途。