如何在Java中死锁或超时后重新启动事务?
作者:互联网
当我们得到时,如何重新启动事务(以便它至少执行一次):
( com.mysql.jdbc.exceptions.jdbc4.MySQLTransactionRollbackException:Deadlock found when trying to get lock; Try restarting transaction ) OR ( transaction times out ) ?
我正在使用MySQL(innoDB ENGINE)和Java.Please帮助并链接任何有用的资源或代码.
解决方法:
什么时候你在catch块中捕获这种类型的异常
catch(Exception e){
if(e instanceof TransactionRollbackException){
//Retrigger Your Transaction
}
// log your exception or throw it its upto ur implementation
}
标签:java,mysql,transactions,jdbc,database-deadlocks 来源: https://codeday.me/bug/20190704/1380306.html