I am new in hibernate
I gone through few(1,2) tutorials on hibernate
and even implement in my project,I reached the following conclusion-
mapped by
means other side of object is owner
This is just for database point of view,how actually I want to create relation ship in database,In general mapped by
is used to avoid unnecessary table.
From java point of view this has no impact on your code,same code which running with mapped by
will behave exactly same even we remove mapped by
.
Is my above understanding is correct,if not can you please explain in which case this behave differently?