vote up 2 vote down star

I am new to hibernate just to mention but I know that it has optimistic locking support. I was searching all day and I wasn't able to find tutorial how to implement it in some basic application.

So fore example I have this mysql table http://pastebin.com/m574200ce and I have this hibernate mapping file: http://pastebin.com/m2047dd98 (generated with NetBeans 6.5). What else do I need to add to this file to make optimistic locking which works on this simple table when I do (for example):

session.saveOrUpdate(user);
tx.commit();
flag

2 Answers

vote up 4 vote down check

Optimistic Locking is achieved using the version capability of hibernate. Read through the doc below to see how it is used.

http://docs.jboss.org/hibernate/stable/core/reference/en/html/mapping.html#mapping-declaration-version

link|flag
vote up 1 vote down

If you are using JPA (annotation style) you can add a column

@Version
private Long version;

If you turn on sql level debugging for hibernate, you'll see that each update/delete statement will be extended by

WHERE ... and alias.version=?

Which allows Hibernate change only rows with the same value in version column that must be equal to version's value of loaded java object (i.e. optimistic locking). If the version doesn't match to each other StaleObjectStateException will be thrown.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.