MyBatis批量更新操作異常

### The error occurred while setting parameters
### SQL: UPDATE db_outbound              SET batch_no=?,                 push_times=?,                 update_at=?              WHERE             id =  ?             AND is_del=0          ;              UPDATE db_outbound              SET batch_no=?,                 push_times=?,                 update_at=?              WHERE             id =  ?             AND is_del=0
### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'UPDATE db_outbound
             SET batch_no='20191031110000015',
         ' at line 9
; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'UPDATE db_outbound
             SET batch_no='20191031110000015',
         ' at line 9 

原因:mybatis默認一次請求僅執行一條sql語句,需要批量操作請手動配置 jdbc.propreties文件中增加&allowMultiQueries=true 

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章