hibernate 批量插入
2021-07-15 23:05
标签:批量插入 nbsp mda exception dash message nfa i++ style Session session = sessionFactoryUpLowLimit.openSession(); for(int i=0 ;i
{ session.save(upperLowerLimitDataBean); if(i%2==0){ try{ } try{ session.getTransaction().commit(); }catch(Exception e) {System.out.println("session--commit--error:"+e.getMessage());} //最后提交一次 session.close();//关闭session hibernate 批量插入 标签:批量插入 nbsp mda exception dash message nfa i++ style 原文地址:http://www.cnblogs.com/lj821022/p/7072172.html
session.beginTransaction();
session.flush();
session.clear();
session.getTransaction().commit(); //一定要加 如果不提交事务,数据将依然缓存在事务处——未进入数据库,也将引起内存溢出的异常。
session.beginTransaction();//一定要加
}catch(Exception e) {System.out.println("session--flush--error:"+e.getMessage());}}
下一篇:jQuery知识点总结