.springframework.orm.hibernate3.HibernateJdbcException: JDBC exception on Hibernate data access: SQLException for SQL [insert into tb_news (n_title, n_content, n_style, n_addTime, n_addAdmin, n_isPublish, n_publishTime, n_publishAdmin, n_updateTime, n_updateAdmin, n_location, n_isShield, n_shieldTime, n_shieldReason, n_shieldAdmin, n_deleteAdmin, n_deleteTime, n_clickNum, n_url, n_isDelete, t_id, n_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)]; SQL state [72000]; error code [1461]; Could not execute JDBC batch update; nested exception is org.hibernate.QueryTimeoutException: Could not execute JDBC batch update
org.springframework.orm.hibernate3.SessionFactoryUtils.convertHibernateAccessException(SessionFactoryUtils.java:645)
org.springframework.orm.hibernate3.HibernateTransactionManager.convertHibernateAccessException(HibernateTransactionManager.java:793)
出現問題的原因是無法執行更新語句,
可能情況
1 數據庫字段的長度被限制了,更新的時候數據長度超過數據的長度,測試方法可以在訪問的方法加入try catch塊,可以清楚的看到異常原因
2 數據庫中不為空的字段被插入空字段。仔細檢查從頁面傳遞的參數是否正確接受,以及插入的數據是否違背了數據庫字段的約束
異常全部顯示為:
org.springframework.orm.hibernate3.HibernateJdbcException: JDBC exception on Hibernate data access; nested exception is org.hibernate.exception.GenericJDBCException: Could not execute JDBC batch update
JDBC生成異常,在我修改我的數據然後保存時發生的。
情況描述:
在我修改數據後調用spring的getHibernateTemplate().merge(person);時發生。換用了.update(person);也不行。(還不太明白update()和merge()方法的區別)
問題解決:
可能是我笨的關系,我把緩存清理下,有重新啟動了下服務器,並且用斷點一直跟代碼,結果就過去了,什麼異常都沒有了。我這個高興啊,但是卻還是不知道怎麼會發生這樣的錯誤,郁悶。
更正:引起該異常並不是因為緩存和斷點的原因,之所以沒把上面的結論刪除就想提醒自己遇到問題多想想,別老傻拉吧唧的幻想。
其實引起問題的原因很簡單,我在建立數據庫的時候把personName設置成not null了,這是我不小心弄的,但是我在前台傳值修改的時候卻沒有再傳次(其實用merge()可以不用傳的,但不知道為什麼就是不行)把這個personName傳一次,所以導致了上面的這個錯誤,當我加上了<input type="hidden" value="personSO.personName" name="<ww:property value='personSO.personName' />">時就通過了,只是奇怪的是如果用merge()的話是不用再次傳這個數據庫已經有的值的,這裡還需要再弄明白些。
作者:csdn博客 tfy1332