org.springframework.transaction.TransactionSystemException: Could not commit Hibernate transaction; nested exception is org.hibernate.TransactionException: Transaction not successfully started
最近在写操作CLOB的过程中总是报这个异常,数据去插入进去了.
先看看SessionFactory.getCurrentSession与openSession的区别
1. 如果使用的是getCurrentSession来创建session的话,在commit后,session就自动被关闭了,
也就是不用再session.close()了。但是如果使用的是openSession方法创建的session的话,
那么必须显示的关闭session,也就是调用session.close()方法。这样commit后,session并没有关闭
开始用的:
Session session = this.getHibernateTemplate().getSessionFactory().getCurrentSession();
Transaction tran=session.beginTransaction();
好多文章里都说只需在Spring配置 中加入 thread就可以解决,试了没用.
修改后的:
Session session = this.getHibernateTemplate().getSessionFactory().openSession();
Transaction tran=session.beginTransaction();
......
finally
{
session.close();
}
public void updateStatistic() {
// TODO Auto-generated method stub
Session session = getSessionFactory().getCurrentSession();
session.doWork(new Work() {
public void execute(Connection connection) {
// 这里已经得到connection了,可以继续你的JDBC代码。
// 注意不要close了这个connection。
CallableStatement cs;
try {
cs = connection
.prepareCall("{call assessIndexStatistic_procedure}");
cs.execute(); // 调用存储过程
} catch (SQLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
});
}
本文探讨了在使用Hibernate进行CLOB操作时遇到的TransactionSystemException异常,详细分析了SessionFactory的getCurrentSession与openSession的区别,以及如何正确处理事务提交和session关闭的问题。
152

被折叠的 条评论
为什么被折叠?



