I thought that the common way to model a one-to-many relation in a database is via a foreign key relationship (i.e. one customer with many orders -> order table gets a FK reference to customer table).
However, Hibernate recommends to use a join table to model such relationships:
A unidirectional one to many using a foreign key column in the owned entity is not that common and not really recommended. We strongly advise you to use a join table for this kind of association (as explained in the next section). This kind of association is described through a @JoinColumn.
Why is this "not really recommended". I thought the using an FK was the standard, and that join tables are only used for many-to-many relationships?
I don't like to create a join table, because the data model will look like the relationship is many-to-many, when in fact it is one-to-many.
What is the reason for this recommendation in the Hibernate docs?