Hibernate:在不同的线程中查找持久化对象

时间:2014-09-09 11:02:45

标签: java multithreading hibernate

我的应用程序中有几个线程 - 其中一个线程正等待数据库中的某些更改通知。我的问题是,一旦我坚持一些对象并通知另一个线程 - 当它自上次更改后向数据库查询新对象时,找不到持久化对象。

  @Transactional()
  public void persistMyEntity() {
      // persisting and notifying from first thread
      Entity myEntity = new Entity();
      em.persist(myEntity)
      em.flush();
      someOtherBean.notifyChange();
  }
  ...

应该唤醒以下bean:

  public class SomeOtherBean {

      public void notifyChange() {
          currentThread.interrupt();
      }


      public void run() {
          currentThread = Thread.currentThread();

          while(true) {
              ...
              try {
                  Thread.sleep(VERY_LONG_TIME);
              } catch (InterrupedExcdeption e) {
                  // we don't care
              }

              findNewPersistedObjects();
              // nothing is found
          }
      }
  }

如果我重新启动线程,它会正确找到新对象。

编辑:拆分事务方法没有任何区别:

  public void persistMyEntity() {
      proxy(this).persistMyEntityInternal();
      someOtherBean.notifyChange();
  }

  @Transactional
  public void persistMyEntityInternal() {
      // persisting and notifying from first thread
      Entity myEntity = new Entity();
      em.persist(myEntity)
      em.flush();
  }
  ...

2 个答案:

答案 0 :(得分:2)

你的问题是交易划分。

在交易完成之前通知您的其他线程。只有在创建数据的事务结束时(使用提交)才能查询数据库中的数据(某些数据库有一些例外,但我不会深入讨论)。

要解决您的问题,您必须在从另一个线程查询之前提交您的事务。

答案 1 :(得分:0)

您可以使用TransactionSynchronization注册TransactionSynchronizationManager。这允许您在trx成功提交时回调。