ssh中Connection is read-only问题的产生原因与解决方法

http://blog.sina.com.cn/s/blog_7e9b4ad70100vb75.html

WARN [org.hibernate.util.JDBCExceptionReporter] - <SQL Error: 0, SQLState: S1009>
ERROR [org.hibernate.util.JDBCExceptionReporter] - <Connection is read-only. Queries leading to data modification are not allowed>
org.hibernate.exception.GenericJDBCException: could not execute update query

产生原因:
一般如果报了这个错,估计是ssh中事物配置文件的问题。

   <!-- 配置事务的传播特性 -->
 <tx:advice id="txAdvice" transaction-manager="transactionManager">
  <tx:attributes>
   <tx:method name="add*" propagation="REQUIRED"/>
   <tx:method name="delete*" propagation="REQUIRED"/>
   <tx:method name="modify*" propagation="REQUIRED"/>
   <tx:method name="*" read-only="true"/>
  </tx:attributes>
 </tx:advice>这里面规定了数据库操作函数必须要以以上字符串开头,否则的话就按照默认的配置,对数据库访问的权限为read-only。
一般来说一个数据库操作类XXService都是继承基类 DAO.
数据库操作类XXService中的方法在执行的时候,会和事务配置表中的进行对比,并赋给相应的权限。

解决办法:
解决方案有2种
1.规范命名,在你的类中,是增加的方法就命名为add*,删除的方法就命名为delete*,修改的方法就命名为modify*。
2.删除read-only="true" ,但是这种方法不推荐,因为有可能会出现一些你想不到的问题,或者是对服务器的性能造成影响。

你可能感兴趣的:(ssh中Connection is read-only问题的产生原因与解决方法)