java.sql.SQLException: Could not retrieve transaction read-only status from server

以下是本人踩过的坑,忘各位博友引以为戒(主要是对事物的了解太浅,下面会总结出来少许的理解)

一、异常:

java.sql.SQLException: Could not retrieve transaction read-only status from server_第1张图片

java.sql.SQLException: Could not retrieve transaction read-only status from server_第2张图片

内容:下载图片大概用了二十多分钟,然后去更新数据库直接数据库连接断开!

原因:事物等待超时

解决:

我这里就一个更新语句,所以直接把@Transactional去掉问题解决(更新的数据量多,并且数据比较复杂的时候不建议这样做)

 

下面是自己对spring中事物的一点测试:

第一种情况:

java.sql.SQLException: Could not retrieve transaction read-only status from server_第3张图片

第二种情况:

java.sql.SQLException: Could not retrieve transaction read-only status from server_第4张图片

第三种情况:

java.sql.SQLException: Could not retrieve transaction read-only status from server_第5张图片

第四种情况(有异步):java.sql.SQLException: Could not retrieve transaction read-only status from server_第6张图片

第五种情况(有异步):

java.sql.SQLException: Could not retrieve transaction read-only status from server_第7张图片

java.sql.SQLException: Could not retrieve transaction read-only status from server_第8张图片

第六中情况:

java.sql.SQLException: Could not retrieve transaction read-only status from server_第9张图片

第七种情况:

java.sql.SQLException: Could not retrieve transaction read-only status from server_第10张图片

第八种情况:

java.sql.SQLException: Could not retrieve transaction read-only status from server_第11张图片

总结(springAOP中的事物):

(同一个service主方法衍生的子方法):只对首次调用的方法上面的@Transactional有效有效,子方法上添加spring的异步方法同带事物都不会生效;

(两个service的方法互调):两个service都有事物,主方法会生效,子方法不生效;service1(主方法)有事物,service2(子方法)没事物,此时两个service共用主方法的事物;service1(主方法)没事物,service2(子方法)有事物,此时只用子方法的事物会生效,主方法不存在事物;

/****************************************************谢谢惠顾*****************************************************/

你可能感兴趣的:(异常解决类)