Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.