Say using following function:
getUnique(){
MyObject obj = getValueFromDb();
obj.modifyIt();
obj.commit();
}
When simultaneous call is made to this method several threads share same value of the MyObject, but I expected each thread to have a unique value.
To fix this I used thread synchronizing using class.getInstance().myMethodCall() to get unique value of some property, this solved the purpose, but as simultaneous call comes it reduces the efficiency of function.
Is there some better way to fix this? (Using STRUTS, HIBERNATE3.0)