-->
These old forums are deprecated now and set to read-only. We are waiting for you on our new forums!
More modern, Discourse-based and with GitHub/Google/Twitter authentication built-in.

All times are UTC - 5 hours [ DST ]



Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 1 post ] 
Author Message
 Post subject: Prevent Update with many-to-many and Audit fields
PostPosted: Wed Apr 07, 2010 6:51 am 
Newbie

Joined: Wed Apr 07, 2010 5:47 am
Posts: 1
Hi, I have a many-to-many relationship between two objects called "Big" and "Small". I am receiving data to persist from another system where each message contains one "Big" item and numerous "Small" items. I have added a created_date and updated_date field to each table using an EntityInterceptor.

Two messages will always contain a different "Big" object but most of the "Small" objects will be the same. Therefore I want to only INSERT or UPDATE "Small" items that have changed. If I don't include my audit fields then everything works fine and I don't see items updated unnecesarily.

My problem seems to be that when specifying the updated_date in my mapping file onFlushDirty() is always called for the "Small" items because the updatedDate field is null and has not been set yet (createdDate is ignored because I set update="false" on it). Can I tell hibernate to ignore this field when checking for dirty status?

I tried adding optimistic-lock="false" but this didn't seem to work...

Code:
<class name="Small" table="tbl_small">
...
<id name="sourceId" type="long">
   <column name="source_id" precision="10" scale="0" />
</id>
...
<property name="createdDate" type="timestamp" update="false">
    <column name="created_date" />
</property>
<property name="updatedDate" type="timestamp" optimistic-lock="false">
    <column name="updated_date" />
</property>


My code calls dao.saveOrUpdate(big) and it takes care of the related collection of Small items. Prior to the UPDATE statements foreach small item I can see hibernate calling SELECT using their source_id, so would have thought they were loaded in the session. Do i have do a merge or something?


Top
 Profile  
 
Display posts from previous:  Sort by  
Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 1 post ] 

All times are UTC - 5 hours [ DST ]


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum

Search for:
© Copyright 2014, Red Hat Inc. All rights reserved. JBoss and Hibernate are registered trademarks and servicemarks of Red Hat, Inc.