Using MySQL and Spring MVC, I'm seeing this deadlock error when POSTing JSON to the web server.
The client can send either asynchronous or synchronous requests that store Hibernate entities. There's a method that sends three (JSON) objects at once to be stored. These three objects are all children of the same object. When sent asynchronously, the server raises a Hibernate deadlock exception -- I assume because transactions are opened up for the same object.
What would be the proper approach to resolving this? Do I change the Hibernate commit settings, the Spring @Transactional annotation options, or the controller itself?
EDIT: The exact error is Deadlock found when trying to get lock; try restarting transaction, for which there are some useful answers