在我们的Java项目中批量更新是指在一个事务中更新大批量数据批量删除是指在一个事务中删除大批量数据批量删除虽然在Hibernate里也可以实现但因Hibernate的实现机制是一个一个删除在数量大的情况下很影响效率;其实Hibernate提供的JDBC接口可以方便的进行批量的更新和删除
以下程序直接通过Hibernate API批量更新CUSTOMERS表中年龄大于零的所有记录的AGE字段
tx = sessionbeginTransaction();
Iterator customers=sessionfind(from Customer c where cage>erator();
while(customershasNext()){Customer customer=(Customer)customersnext();
customersetAge(customergetAge()+);
}
mit();
sessionclose();
如果CUSTOMERS表中有万条年龄大于零的记录那么Session的find()方法会一下子加载万个Customer对象到内存当执行mit()方法时会清理缓存Hibernate执行万条更新CUSTOMERS表的update语句
update CUSTOMERS set AGE=? … where ID=i;
update CUSTOMERS set AGE=? … where ID=j;
……
update CUSTOMERS set AGE=? … where ID=k;
以上批量更新方式有两个缺点
()占用大量内存必须把万个Customer对象先加载到内存然后一一更新它们
()执行的update语句的数目太多每个update语句只能更新一个Customer对象必须通过万条update语句才能更新一万个Customer对象频繁的访问数据库会大大降低应用的性能
为了迅速释放万个Customer对象占用的内存可以在更新每个Customer对象后就调用Session的evict()方法立即释放它的内存
tx = sessionbeginTransaction();
Iterator customers=sessionfind(from Customer c where cage>erator();
while(customershasNext()){Customer customer=(Customer)customersnext();
customersetAge(customergetAge()+);
sessionflush();sessionevict(customer);
}
mit();sessionclose();
在以上程序中修改了一个Customer对象的age属性后就立即调用Session的flush()方法和evict()方法flush()方法使Hibernate立刻根据这个Customer对象的状态变化同步更新数据库从而立即执行相关的update语句;evict()方法用于把这个Customer对象从缓存中清除出去从而及时释放它占用的内存
但evict()方法只能稍微提高批量操作的性能因为不管有没有使用evict()方法Hibernate都必须执行万条update语句才能更新万个Customer对象这是影响批量操作性能的重要因素假如Hibernate能直接执行如下SQL语句
update CUSTOMERS set AGE=AGE+ where AGE>;
那么以上一条update语句就能更新CUSTOMERS表中的万条记录但是Hibernate并没有直接提供执行这种update语句的接口应用程序必须绕过Hibernate API直接通过JDBC API来执行该SQL语句
tx = sessionbeginTransaction();
Connection con=nnection();
PreparedStatement stmt=conprepareStatement(update CUSTOMERS set AGE=AGE+ +where AGE> );stmtexecuteUpdate();
mit();
以上程序演示了绕过Hibernate API直接通过JDBC API访问数据库的过程应用程序通过Session的connection()方法获得该Session使用的数据库连接然后通过它创建PreparedStatement对象并执行SQL语句值得注意的是应用程序仍然通过Hibernate的Transaction接口来声明事务边界
如果底层数据库(如Oracle)支持存储过程也可以通过存储过程来执行批量更新存储过程直接在数据库中运行速度更加快在Oracle数据库中可以定义一个名为batchUpdateCustomer()的存储过程代码如下
create or replace procedure batchUpdateCustomer(p_age in number)
asbeginupdate CUSTOMERS
set AGE=AGE+ where AGE>p_age;
end;
以上存储过程有一个参数p_age代表客户的年龄应用程序可按照以下方式调用存储过程
tx = sessionbeginTransaction();
Connection con=nnection();
String procedure = {call batchUpdateCustomer(?) };
CallableStatement cstmt = conprepareCall(procedure);cstmtsetInt(); //把年龄参数设为cstmtexecuteUpdate();
mit();
从上面程序看出应用程序也必须绕过Hibernate API直接通过JDBC API来调用存储过程
Session的各种重载形式的update()方法都一次只能更新一个对象而delete()方法的有些重载形式允许以HQL语句作为参数例如
sessiondelete(from Customer c where cage>);
如果CUSTOMERS表中有万条年龄大于零的记录那么以上代码能删除一万条记录但是Session的delete()方法并没有执行以下delete语句
delete from CUSTOMERS where AGE>;
Session的delete()方法先通过以下select语句把万个Customer对象加载到内存中
select * from CUSTOMERS where AGE>;
接下来执行一万条delete语句逐个删除Customer对象
delete from CUSTOMERS where ID=i;
delete from CUSTOMERS where ID=j;
……
delete from CUSTOMERS where ID=k;
由此可见直接通过Hibernate API进行批量更新和批量删除都不值得推荐而直接通过JDBC API执行相关的SQL语句或调用相关的存储过程是批量更新和批量删除的最佳方式这两种方式都有以下优点
()无需把数据库中的大批量数据先加载到内存中然后逐个更新或修改它们因此不会消耗大量内存
()能在一条SQL语句中更新或删除大批量的数据