java.sql.SQLException: Connection is read-only. Queries leading to data modification are not allowed

來源:互聯網
上載者:User

標籤:

org.springframework.dao.TransientDataAccessResourceException: ### Error updating database.  Cause: java.sql.SQLException: Connection is read-only. Queries leading to data modification are not allowed### The error may involve defaultParameterMap### The error occurred while setting parameters### SQL: UPDATE wed_trans SET status=?, st_time=DATE_FORMAT(NOW(),‘%Y%m%d%H%i%S‘) WHERE order_no=?### Cause: java.sql.SQLException: Connection is read-only. Queries leading to data modification are not allowed; SQL []; Connection is read-only. Queries leading to data modification are not allowed; nested exception is java.sql.SQLException: Connection is read-only. Queries leading to data modification are not allowed    at org.springframework.jdbc.support.SQLStateSQLExceptionTranslator.doTranslate(SQLStateSQLExceptionTranslator.java:106) ~[SQLStateSQLExceptionTranslator.class:4.0.9.RELEASE]    at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:73) ~[AbstractFallbackSQLExceptionTranslator.class:4.0.9.RELEASE]    at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:81) ~[AbstractFallbackSQLExceptionTranslator.class:4.0.9.RELEASE]    at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:81) ~[AbstractFallbackSQLExceptionTranslator.class:4.0.9.RELEASE]Caused by: java.sql.SQLException: Connection is read-only. Queries leading to data modification are not allowed

解決方案:事務配置在service層,但是你的service層的方法是query開頭的,service調用的query方法根本就沒有事務。你的設定檔下面是不是還有關於query*的配置成了read-only?修改你service方法的開頭變成不是read-only的那種配置,如clear開頭。(在query方法名(read_only)裡面執行了update操作,所以就報錯了。)

<!-- 配置交易管理員 -->    <bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">        <property name="dataSource" ref="dataSource" />    </bean><!-- 聲明式事物管理 -->    <tx:advice id="txAdvice" transaction-manager="transactionManager">        <tx:attributes>                <tx:method name="get*" read-only="true" />                <tx:method name="find*" read-only="true" />                <tx:method name="load*" read-only="true" />                <tx:method name="query*" read-only="true" />                <tx:method name="add*" read-only="false" rollback-for="Exception" propagation="REQUIRED"/>                <tx:method name="save*" read-only="false" rollback-for="Exception" propagation="REQUIRED"/>                <tx:method name="insert*" read-only="false" rollback-for="Exception" propagation="REQUIRED"/>                <tx:method name="update*" read-only="false" rollback-for="Exception" propagation="REQUIRED"/>                <tx:method name="modify*" read-only="false" rollback-for="Exception" propagation="REQUIRED"/>                <tx:method name="delete*" read-only="false" rollback-for="Exception" propagation="REQUIRED"/>                <tx:method name="del*" read-only="false" rollback-for="Exception" propagation="REQUIRED"/>                <tx:method name="registe*" read-only="false" rollback-for="Exception" propagation="REQUIRED"/>                <tx:method name="approve*" read-only="false" rollback-for="Exception" propagation="REQUIRED"/>                <tx:method name="clear*" read-only="false" rollback-for="Exception" propagation="REQUIRED"/>                <tx:method name="set*" read-only="false" rollback-for="Exception" propagation="REQUIRED"/>                <tx:method name="reset*" read-only="false" rollback-for="Exception" propagation="REQUIRED"/>                <tx:method name="getUpdate*" read-only="false" rollback-for="Exception" propagation="REQUIRED"/>                <!-- <tx:method name="*" read-only="true"/> -->        </tx:attributes>    </tx:advice>

 

java.sql.SQLException: Connection is read-only. Queries leading to data modification are not allowed

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.