我有一张学生桌,一个学生可以有很多朋友。朋友也是学生。所以我又添加了一张表 Friends,其中包含三列 id、studentid、friendid,其中 studentid 和friendid 是学生表中 id 的外键。现在如何在 Hibernate 中进行 OneToMany 映射?
问问题
284 次
我有一张学生桌,一个学生可以有很多朋友。朋友也是学生。所以我又添加了一张表 Friends,其中包含三列 id、studentid、friendid,其中 studentid 和friendid 是学生表中 id 的外键。现在如何在 Hibernate 中进行 OneToMany 映射?