This week's book giveaway is in the General Computing forum. We're giving away four copies of Arduino in Action and have Martin Evans, Joshua Noble, and Jordan Hochenbaum on-line! See this thread for details.
I didn't understand how optimistic concurrency will work in hibernate?
As per my knowledge, we need to have either VERSION or TIMESTAMP column in persistence table which is mappend to hibernate.
Say we are having TIMESTAMP column then whenever we execute INSERT,UPDATE statement hibernate will modify TIMESTAMP column with system timestamp. When we try to update a row and that row timestamp is differenent from the existing row timestamp then it determines as stale data and it will through the error message.
Please correct me if I'm wrong and also provide some example too.
Below is a simple code, which will depict how optimistic locking/(concurrency control) will be done by hibernate.
// foo is an instance loaded by a previous Session
session = factory.openSession();
int oldVersion = foo.getVersion();
session.load( foo, foo.getKey() );
if ( oldVersion!=foo.getVersion )
throw new StaleObjectStateException();