Hey,
using in
Jboss, hibernate,spring,ms-sql.
I run multi threaded.
in some cases i get - org.hibernate.exception.LockAcquisitionException.
I dont have any explicit lock either by using in "select for update" or hibernate locking ...
But still when hibernate try to flush (and execute update bedore flush) it throw the exception based on deadlock in detected in the DB.
Again - there is no lock in my code?
so - why hibetrnate or the DB lock? (as far as i know the default for hibernate is optimisitc lock).
Some googeling give "strang advices" like read all the data in the beging for ms-sql server ...
https://coderanch.com/t/415119/Object-Relational-Mapping/java/Deadlock-problems-with-Hibernate-Spring
...