首页 > Web开发 > 详细

hibernate批量插入collection,同一类实体,不通实例

时间:2015-11-12 23:40:39      阅读:451      评论:0      收藏:0      [点我收藏+]

http://stackoverflow.com/questions/20458401/how-to-insert-multiple-rows-into-database-using-hibernate




accepted

There‘s a very nice chapter about batch processing in the Hibernate docs.

Set the property

hibernate.jdbc.batch_size 20

Then use this code

Session session = sessionFactory.openSession();Transaction tx = session.beginTransaction();for ( int i=0; i<100000; i++ ) {
    Customer customer = new Customer(.....);
    session.save(customer);
    if ( i % 20 == 0 ) { //20, same as the JDBC batch size
        //flush a batch of inserts and release memory:
        session.flush();
        session.clear();
    }}


hibernate批量插入collection,同一类实体,不通实例

原文:http://my.oschina.net/lilinzero/blog/529659

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!