I'm using the EclipseLink implementation of the JPA 2.0 which allows pessimistic locking. I know how to lock an entity but how do I release the lock? At first I thought this was all taken care of within a transaction (in other words, the entity is locked until you commit the transaction), but that does not seem to be the case.
I tried a quick google search (seems like this should be pretty obvious), but I haven't found anything...
After getting some sleep... and doing some more testing in the morning, I believe I have figured out my problem.
So the lock is actually
taken care of within a transaction
. However, when I was testing my code, I was able to retrieve a locked row using theEntityManager.find(Class, key)
method (no locking strategy specified).I erroneously thought that by putting a lock on a row, the row could not be read, period. However, I reread the JPA definitions of
PESSIMISTIC_READ
andPESSIMISTIC_WRITE
and noticed my problem:The lock doesn't necessarily prevent all reads, it just prevents another transaction from putting a
READ or WRITE lock
on the row.