Start here. This is the direct spoken answer to practice first.
Overview
Ownership tells JPA which mapping controls the database relationship; it is not a statement about domain importance.
In a bidirectional JPA relationship, the owning side is the mapping that writes the foreign key or join table. The inverse side uses mappedBy to point to the owning field and does not independently control that database link. For a typical one-to-many and many-to-one pair, the many-to-one side owns the foreign key. Changing only the inverse collection may leave the database relationship unchanged.