I am a bit confused on the benefits of optimistic locking in JPA.
I conducted a test with two threads and a single row on a versioned entity table.
Here is what I have found:
T1: begin tran
T1: fetch single entity
T1: Update field in entity
T1: sleep
T2: begin tran
T2: fetch single entity
T2: Update field in entity
T2: commit trans
T1: wake up
T1: commit trans - throws OptimisticLockException (expected)
Second test. Note the addition of a select statement.
T1: begin tran
T1: fetch single entity
T1: Update field in entity
T1: run select query on table (this causes a DB transaction to begin)
T1: sleep
T2: begin tran
T2: fetch single entity (this blocks until DB transaction of thread T1 completes!)
T2: Update field in entity
T2: commit trans
T1: wake up
T1: commit trans - ok, no exception. The fetch/update/commit of T2 happened after T1 commit.
I wasn't really expecting any blocking to occur when using optimistic locking, however my understanding is that a database transaction has to be in place here so that the correct data is returned from the select statement.
Since JPA only seems to enter database transactions when absolutely necessary, can anyone explain what the benefits of optimistic locking are?