We are trying to build a One-to-many relation. Trying to understand how this works, we stumbled across this example, which shows how to do it.
The example shows a reasonable ER diagram, but generally speaking in a One-to-many relation one doesn't need an auxiliary table. We could insert a StudentId column into the Phone table and achieve the linking by joining the two tables through this identifier. In the example, by contrast, they need to join three tables instead.
We are wondering if such a behaviour is justified by some good practice which makes the management easy for Hibernate or if it's just an error of the guy who wrote the article.
Any thoughts?