I have an web application with MySQL DB and Hibernate. I have open a Hibernate Session,
started a transaction
do some work
commit the transaction
Then again
started a transaction
do some work
commit the transaction
But I am ended with following exception
Exception in thread "main" org.hibernate.TransactionException: Transaction not successfully started Transaction not successfully started.
Please guide me in this specific issue. How can I use multiple transaction within a Session.