批处理

考虑一种情况,你需要使用 Hibernate 将大量的数据上传到你的数据库中。以下是使用 Hibernate 来达到这个的代码片段:

  1. Session session = SessionFactory.openSession();
  2. Transaction tx = session.beginTransaction();
  3. for ( int i=0; i<100000; i++ ) {
  4. Employee employee = new Employee(.....);
  5. session.save(employee);
  6. }
  7. tx.commit();
  8. session.close();

因为默认下,Hibernate 将缓存所有的在会话层缓存中的持久的对象并且最终你的应用程序将和 OutOfMemoryException 在第 50000 行的某处相遇。你可以解决这个问题,如果你在 Hibernate 使用批处理

为了使用批处理这个特性,首先设置 hibernate.jdbc.batch_size 作为批处理的尺寸,取一个依赖于对象尺寸的值 20 或 50。这将告诉 hibernate 容器每 X 行为一批插入。为了在你的代码中实现这个我们将需要像以下这样做一些修改:

  1. Session session = SessionFactory.openSession();
  2. Transaction tx = session.beginTransaction();
  3. for ( int i=0; i<100000; i++ ) {
  4. Employee employee = new Employee(.....);
  5. session.save(employee);
  6. if( i % 50 == 0 ) { // Same as the JDBC batch size
  7. //flush a batch of inserts and release memory:
  8. session.flush();
  9. session.clear();
  10. }
  11. }
  12. tx.commit();
  13. session.close();

上面的代码将使 INSERT 操作良好运行,但是如果你愿意进行 UPDATE 操作那么你可以使用以下代码达到这一点:

  1. Session session = sessionFactory.openSession();
  2. Transaction tx = session.beginTransaction();
  3. ScrollableResults employeeCursor = session.createQuery("FROM EMPLOYEE")
  4. .scroll();
  5. int count = 0;
  6. while ( employeeCursor.next() ) {
  7. Employee employee = (Employee) employeeCursor.get(0);
  8. employee.updateEmployee();
  9. seession.update(employee);
  10. if ( ++count % 50 == 0 ) {
  11. session.flush();
  12. session.clear();
  13. }
  14. }
  15. tx.commit();
  16. session.close();

批处理样例

让我们通过添加 hibernate.jdbc.batch_size 属性来修改配置文件:

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <!DOCTYPE hibernate-configuration SYSTEM
  3. "http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd">
  4. <hibernate-configuration>
  5. <session-factory>
  6. <property name="hibernate.dialect">
  7. org.hibernate.dialect.MySQLDialect
  8. </property>
  9. <property name="hibernate.connection.driver_class">
  10. com.mysql.jdbc.Driver
  11. </property>
  12. <!-- Assume students is the database name -->
  13. <property name="hibernate.connection.url">
  14. jdbc:mysql://localhost/test
  15. </property>
  16. <property name="hibernate.connection.username">
  17. root
  18. </property>
  19. <property name="hibernate.connection.password">
  20. root123
  21. </property>
  22. <property name="hibernate.jdbc.batch_size">
  23. 50
  24. </property>
  25. <!-- List of XML mapping files -->
  26. <mapping resource="Employee.hbm.xml"/>
  27. </session-factory>
  28. </hibernate-configuration>

考虑以下 POJO Employee 类:

  1. public class Employee {
  2. private int id;
  3. private String firstName;
  4. private String lastName;
  5. private int salary;
  6. public Employee() {}
  7. public Employee(String fname, String lname, int salary) {
  8. this.firstName = fname;
  9. this.lastName = lname;
  10. this.salary = salary;
  11. }
  12. public int getId() {
  13. return id;
  14. }
  15. public void setId( int id ) {
  16. this.id = id;
  17. }
  18. public String getFirstName() {
  19. return firstName;
  20. }
  21. public void setFirstName( String first_name ) {
  22. this.firstName = first_name;
  23. }
  24. public String getLastName() {
  25. return lastName;
  26. }
  27. public void setLastName( String last_name ) {
  28. this.lastName = last_name;
  29. }
  30. public int getSalary() {
  31. return salary;
  32. }
  33. public void setSalary( int salary ) {
  34. this.salary = salary;
  35. }
  36. }

让我们创建以下的 EMPLOYEE 表单来存储 Employee 对象:

  1. create table EMPLOYEE (
  2. id INT NOT NULL auto_increment,
  3. first_name VARCHAR(20) default NULL,
  4. last_name VARCHAR(20) default NULL,
  5. salary INT default NULL,
  6. PRIMARY KEY (id)
  7. );

以下是将 Employee 对象和 EMPLOYEE 表单配对的映射文件。

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <!DOCTYPE hibernate-mapping PUBLIC
  3. "-//Hibernate/Hibernate Mapping DTD//EN"
  4. "http://www.hibernate.org/dtd/hibernate-mapping-3.0.dtd">
  5. <hibernate-mapping>
  6. <class name="Employee" table="EMPLOYEE">
  7. <meta attribute="class-description">
  8. This class contains the employee detail.
  9. </meta>
  10. <id name="id" type="int" column="id">
  11. <generator class="native"/>
  12. </id>
  13. <property name="firstName" column="first_name" type="string"/>
  14. <property name="lastName" column="last_name" type="string"/>
  15. <property name="salary" column="salary" type="int"/>
  16. </class>
  17. </hibernate-mapping>

最后,我们将用 main() 方法来创建我们的应用程序类以运行应用程序,我们将使用 Session 对象和可用的 flush()clear() 方法以让 Hibernate 持续将这些记录写入数据库而不是在内存中缓存它们。

  1. import java.util.*;
  2. import org.hibernate.HibernateException;
  3. import org.hibernate.Session;
  4. import org.hibernate.Transaction;
  5. import org.hibernate.SessionFactory;
  6. import org.hibernate.cfg.Configuration;
  7. public class ManageEmployee {
  8. private static SessionFactory factory;
  9. public static void main(String[] args) {
  10. try{
  11. factory = new Configuration().configure().buildSessionFactory();
  12. }catch (Throwable ex) {
  13. System.err.println("Failed to create sessionFactory object." + ex);
  14. throw new ExceptionInInitializerError(ex);
  15. }
  16. ManageEmployee ME = new ManageEmployee();
  17. /* Add employee records in batches */
  18. ME.addEmployees( );
  19. }
  20. /* Method to create employee records in batches */
  21. public void addEmployees( ){
  22. Session session = factory.openSession();
  23. Transaction tx = null;
  24. Integer employeeID = null;
  25. try{
  26. tx = session.beginTransaction();
  27. for ( int i=0; i<100000; i++ ) {
  28. String fname = "First Name " + i;
  29. String lname = "Last Name " + i;
  30. Integer salary = i;
  31. Employee employee = new Employee(fname, lname, salary);
  32. session.save(employee);
  33. if( i % 50 == 0 ) {
  34. session.flush();
  35. session.clear();
  36. }
  37. }
  38. tx.commit();
  39. }catch (HibernateException e) {
  40. if (tx!=null) tx.rollback();
  41. e.printStackTrace();
  42. }finally {
  43. session.close();
  44. }
  45. return ;
  46. }
  47. }

编译和执行

这里是编译和运行以上提及的应用程序的步骤。确保你已经在处理编译和运行前已经正确设置了 PATH 和 CLASSPATH。

  • 如上面解释的那样创建 hibernate.cfg.xml 配置文件。
  • 如上面显示的那样创建 Employee.hbm.xml 映射文件。
  • 如上面显示的那样创建 Employee.java 源文件并编译。
  • 如上面显示的那样创建 ManageEmployee.java 源文件并编译。
  • 执行 ManageEmployee 二进制代码来运行可以在 EMPLOYEE 表单中创建 100000 个记录的程序。