使用Spring Data JPA批量更新

时间:2018-11-30 09:40:02

标签: hibernate jpa spring-data-jpa batch-processing updates

我正在尝试批量更新表。 下面是我的配置:

spring.jpa.properties.org.hibernate.flushMode=COMMIT
spring.jpa.properties.hibernate.jdbc.batch_size=10
spring.jpa.properties.hibernate.order_inserts=true 
spring.jpa.properties.hibernate.order_updates=true
spring.jpa.properties.hibernate.show_sql=true
spring.jpa.properties.org.hibernate.SQL=DEBUG
spring.jpa.properties.hibernate.format_sql=true
spring.jpa.properties.hibernate.generate_statistics=true
spring.jpa.properties.hibernate.jdbc.batch_versioned_data=true

下面是实际的方法:

    @Transactional(propagation=Propagation.REQUIRES_NEW)
public void updateEmployeeDetails(Map<String, List<String>> orgEAMap) {
    ....
    updateEmployee(employeeMap);
}


public void updateEmployee(Map<String, String> employeeMap) {
    //int i =0;
    for (Entry<String, String> mapEntry : employeeMap.entrySet()) {
        Query query = em.createNativeQuery("UPDATE employee emp SET emp.name = :name WHERE emp.id = :id");
        query.setParameter("id", mapEntry.getValue());
        query.setParameter("name", mapEntry.getKey());
        query.executeUpdate();
        //if(i==10){
            //LOG.info("Flushmode"+em.getFlushMode());
            //em.flush();
        //}
        //i++;
    }
}

我尝试在一定次数后手动进行刷新,但是每次查询执行后都已经发生了flush(partial-flush)。 从统计日志中,我可以看到正在创建10条语句,正在执行0个批处理和刷新。

1 个答案:

答案 0 :(得分:1)

Hibernate的批处理配置仅影响实体及其更改的处理方式。显式查询将立即执行。

如果要使用批处理,我会看到两个选项:

  1. 实际上是加载实体,更改要更新的属性,然后让Hibernate完成。当然,这会增加加载实体的额外开销,这可能是不希望的。
  2. 直接使用数据源使用SQL,并跨过EntityManager。我建议为此使用spring模板。

注意:您可能还希望更新版本属性,以避免丢失更新。