JPA/休眠 - 不需要的部分回滚和会话处理

2022-09-02 14:06:10

我正在使用无状态EJB类来更新位于数据库中的持久性实体。EJB 中的方法调用完成工作的实现类。我认为导致问题的是,一个名为 的实体与一个实体具有 oneToMany 关系。事情已经完成,会话被更新,其中“级联”到 。发生 时,事务未完全回滚,这会导致错误,原因显而易见。FooBarFooBarStaleObjectStateException

EJB

private Session getSession() throws BusinessException {

    if( this.sess == null ) {
            ServiceLocator locator = new ServiceLocator();
            SessionFactory sf = locator.getHibernateSessionFactory();
            this.sess = sf.openSession();
    }
    return this.sess;

}

private ProductionOrderImpl getImpl() throws BusinessException {

    if( this.impl == null ) {
        this.impl = new ProductionOrderImpl( getSession() );
    }
    return this.impl;

}

public void cutoffOrders(  ) throws Exception {

    Transaction tx = null;
    try {
        tx = getSession().beginTransaction();
        getImpl().cutOffFoos(fooTime);
        tx.commit();
    } catch (StaleObjectStateException e1){
        if (tx != null) tx.rollback();
        logger.error( "Failed to cutoff order : " + e1 );
        throw new Exception( LocaleMgr.getMessage());
    } 
      finally {
        // reset implementation object, close session,
        // and reset session object
        impl = null;
        sess.close();
        sess = null;
    }   
}

实施

public ProductionOrderImpl(Session sess) {
    this.sess = sess;
}

public void cutoffFoos(  Timestamp fooTime) throws Exception {
    ... Code that gets fooList ...
    if( fooList != null ) {
        for( Foo foo: fooList ) {
            for( Bar bar : foo.getBarList() ) {
                 ... Code that does things with existing Barlist ...
                 if( ... ) {
                     ... Code that makes new Bar object ...
                     foo.getBarList().add(bar2);
                 }
            }
            sess.update( foo );
        }
    }
}

相关码码

@OneToMany(cascade=CascadeType.ALL, mappedBy="foo")
@OrderBy("startTime DESC")
Set<Bar> barList;

因此,基本上,当事务尝试回滚时,已更改的 Bar 部分将被回滚,但新的 Bar(代码中的 bar2)记录仍然存在。

任何指导将不胜感激。就像我说的,我相信这里的错误与;可能与 有关,但默认情况下它应该处于关闭状态。sess.update(foo)autocommit

我相信正在发生的事情是,Session.Update(foo)反过来创建了两个单独的事务。具体来说,更新 (SQL UPDATE),但 保存 (SQL INSERT)。由于事务上下文只会真正看到 SQL UPDATE,因此它完全可以反转。将不得不对此进行更多研究。FooBar

我已尝试将更改为,但它似乎仍无法解决问题。但是,它确实部分解决了问题。它将正确回滚条目,但导致 StaleObjectStateException 的特定条目除外。该特定条目实际上已从数据库中删除...Session.FlushModeCOMMIT


答案 1

好吧,我设法解决了我的问题。我会等待接受它,以防其他人发布更好的东西,更多的东西......赏金值得。

基本上,通过将 更改为手动,并在整个过程中手动刷新,我可以捕获较早的代码,从而更快地备份代码。我仍然有部分回滚记录的工件。但是,此方法按计划每 2 分钟运行一次,因此在第二次传递期间,它会修复所有问题。FlushModeStaleObjectException

我更改了我的 EJB 以具有以下各项:

public void cutoffOrders(  ) throws Exception {
  Transaction tx = null;
  try {
      tx = getSession().beginTransaction();
      getSession().setFlushMode(FlushMode.MANUAL);
      getImpl().cutOffFoos(fooTime);
      getSession().flush();
      tx.commit();
  } catch (StaleObjectStateException e1){
      if (tx != null) tx.rollback();
      logger.error( "Failed to cutoff order : " + e1 );
      throw new Exception( LocaleMgr.getMessage());
  } 
    finally {
      // reset implementation object, close session,
      // and reset session object
      impl = null;
      sess.close();
      sess = null;
  }   
}

然后实现代码具有以下各项:

public void cutoffFoos(  Timestamp fooTime) throws Exception {
  ... Code that gets fooList ...
  if( fooList != null ) {
      for( Foo foo: fooList ) {
          for( Bar bar : foo.getBarList() ) {
               ... Code that does things with existing Barlist ...
               sess.flush();
               if( ... ) {
                   ... Code that makes new Bar object ...
                   foo.getBarList().add(bar2);
               }
          }
          sess.flush();
          sess.update( foo );
      }
  }
}

答案 2

好吧,这是我的两分钱,因为这也与JPA有关:

在Spring Data JPA中,您可以只使用以下内容:

在进行存储库调用之前1.@Transactional注释(处理回滚)

2.使用JPA存储库保存和冲洗方法,即:

@Service
public class ProductionOrderServiceImpl extends ProductionOrderService{

    @Autowired
    ProductionOrderRepository jpaRepository;

    @Transactional
    public void cutoffOrders( Timestamp fooTime ){

    ... Code that gets fooList ...
      if( fooList != null ) {
          for( Foo foo: fooList ) {
              for( Bar bar : foo.getBarList() ) {
                   ... Code that does things with existing Barlist ...
                   {Call another similar method with @transactional..}//saveAndFlush(BarList);
                   if( ... ) {
                       ... Code that makes new Bar object ...
                       foo.getBarList().add(bar2);
                   }
              }
              jpaRepository.saveAndFlush(foo);
          }
      }

    }

}

内部保存和刷新的作用是:

/*
     * (non-Javadoc)
     * @see org.springframework.data.repository.CrudRepository#save(java.lang.Object)
     */
@Transactional
public <S extends T> S save(S entity) {

    if (entityInformation.isNew(entity)) {
        em.persist(entity);
        return entity;
    } else {
        return em.merge(entity);
    }
}

然后 em.flush();

在此之后,如果您遇到@Audited版本控制问题,其中已删除的记录未显示,则设置org.hibernate.envers.store_data_at_delete = true。

希望这能为解决方案增添视角。


推荐