Presently we are using JDBC in the data layer and planning to replace it with hibernate. I am new to Hibernate and not sure how hibernate handles concurrency. Can somebody explain me if we use spring for the transaction management, how concurrent updates will be handled: by hibernate (In memory automatic version management of hibernate) or I have to put version column in the database to take care of concurrent updates manually.
Whether you're using Spring for transaction management or not doesn't really matter and isn't relevant when it comes to concurrency management, this is actually handled by Hibernate. Hibernate can use 2 strategies to handle concurrent updates: optimistic locking and pessimistic locking. OptimisticWhen using optimistic locking, you map a special attribute (a number, a timestamp) as a version (so you actually have a column for it). This version is read when you retrieve an entity and included in the where clause during an update and incremented by Hibernate. To illustrate how this works, let's imagine you load a Person entity by id=1 and with a current version=1. After a save, Hibernate will perform something like this:
So, now, imagine you have two concurrent transactions running, each of them loading the same entity (same version number) and changing the name. Let's say transaction #1 is committed first, the following query is performed:
It succeeds and the version gets incremented. Then transaction #2 is committed, the following query is performed:
This one won't update anything because the where clause won't match any record. This is where you'll get an optimistic concurrency exception. This strategy is appropriate when you don't maintain the connection, when concurrent accesses are not frequent, and scales really well. And everything is of course handled transparently by Hibernate for you, as long as you map a version attribute. PessimisticWhen using pessimistic locking, Hibernate locks a record for your exclusive use until you have finished with it (typically using a References
|
|||
|
|
|
Hibernate handles the versioning on its own, a healthy suggestion is to not tamper with the version number at all. |
|||
|
|
|
There is some documentation about sessions and transactions on the Hibernate community wiki. It's ultimately handled by the underlying RDBMS transactions, but you need to pay attention to the life cycle of the objects loaded or saved. |
|||
|
|