資料庫報Connection is read-only. Queries leading to data modification are not allowed
阿新 • • 發佈:2018-12-20
資料庫報Connection is read-only. Queries leading to data modification are not allowed,具體是某張表的插入操作時報的錯誤
問題排查過程:
這個超過是批量操作發生的,第一反應是資料庫是不是分讀寫庫,但是單條插入的時可以成功入庫,這個錯誤原因排除。
想到資料庫的事務問題,有可能是配置了方法名稱的限制,查檔案果然是
<property name="transactionAttributes"> <props> <prop key="do*">PROPAGATION_REQUIRED,-Exception</prop> <prop key="save*">PROPAGATION_REQUIRED,-Exception</prop> <prop key="add*">PROPAGATION_REQUIRED,-Exception</prop> <prop key="update*">PROPAGATION_REQUIRED,-Exception</prop> <prop key="delete*">PROPAGATION_REQUIRED,-Exception</prop> <prop key="complete*">PROPAGATION_REQUIRED,-Exception</prop> <prop key="terminate*">PROPAGATION_REQUIRED,-Exception</prop> <prop key="apply*">PROPAGATION_REQUIRED,-Exception</prop> <prop key="cancel*">PROPAGATION_REQUIRED,-Exception</prop> <prop key="*">PROPAGATION_REQUIRED,readOnly</prop> </props> </property>
會發現最後一行有readOnly欄位,它的意思是對所有的方法只能讀,可能批量的方法沒有在這裡配置導致的。
修改:
1.將批量匯入的方法配置一下
<prop key="batch*">PROPAGATION_REQUIRED,-Exception</prop>
2.如果應用功能較少,可以這樣配置(不建議)
<prop key="*">PROPAGATION_REQUIRED,-Exception</prop>