Hi all,
I recently added new property in one class, its list property and I have written xml mapping for that property,due to few reasons I am not suppose to delete database or use create option in hibernate config file to update changes. I have to do it manual by executing sql queries on database.
xml mapping file:
<list name="items" table="ITEM_ITEM_GROUP" lazy="false" cascade="save-update">
<key column="ITEM_GROUP_ID"></key>
<list-index column="IG_INDEX" />
<many-to-many column="ITEM_ID" class="Item" />
</list>
can anyone please help how do i do it?