We have a system in which we must use pessimistic locking in one entity. We are using hibernate, so we use LockMode.UPGRADE. However, it does not lock.
- The tables are InnoDB
- We have checked that locking works correctly in the database (5.0.32), so this bug http://bugs.mysql.com/bug.php?id=18184 seems to be no problem.
- We have checked that datasource includes the
autoCommit = false
parameter. - We have checked that the SQL hibernate (version 3.2) generates includes the " FOR UPDATE".
Thanks,
I'm running into something very similar. I'm using the @Transactional annotation in Spring and I'm issuing a select for update and the update lock is not being acquired (I have other threads that are issuing the same select for update and have verified that they're not blocking on a lock). When I explicitly get the Hibernate session and issue a beginTransaction and commit around the code block, it all works.
This does not give me a warm and fuzzy feeling about Spring container managed transactions.