Schema Diagram is as follows:
http://postimage.org/image/2d7q2pmo4/As shown in the schema, the sample_product and sample_item table are referenced using sample_product_item table i.e. item_id and product_id together form a composite key.
Now there is a sample_product_item_pricelist table that has
one to many relation with sample_product_item table
For e.g.
A product A belonging to an item A might have multiple prices.
Having specified the above information, I would like to know the way to implement the
one to many relation using hibernate annotations.