java – 在一个事务中组合JPA和JDBC操作

前端之家收集整理的这篇文章主要介绍了java – 在一个事务中组合JPA和JDBC操作前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
所以,我有一个带有一些遗留JDBC调用的应用程序,我需要使用一些额外的JPA操作进行更新.我需要能够将JDBC调用和JPA调用作为同一数据库事务的一部分.如果重要的话,我正在使用OpenJPA 2.1.1和Postgres 9.1.以下代码似乎正常工作 – 我运行了一些基本测试,并且JDBC和JPA语句都执行;任何一个中的错误都会导致这对语句没有发生(例如,它们是同一个DB事务的一部分).我有没有看到任何问题 – 我违反了一些最佳做法,或者其他原因我不能以这种方式重新使用Connection对象?
EntityManager em = _em; //acquired from OpenJPA
em.getTransaction().begin();
Connection conn;
try {
  OpenJPAEntityManager oem = (OpenJPAEntityManager) em.getDelegate();
  conn = oem.getConnection();
  PreparedStatement ps = conn.prepareStatement(myStatement);
  //initialize parameters in ps
  ps.executeUpdate();
  em.merge(myJpaObject);
  em.getTransaction().commit();
} finally {
    if (ps != null && !ps.isClosed()) {
      ps.close();
    }
    if (em.getTransaction().isActive()) {
    em.getTransaction().rollback();
  }
}

谢谢!

解决方法

通过一次调整,我认为应该没问题.

值得注意的是what the OpenJPA documentation has to say about it

The returned connection is only guaranteed to be transactionally consistent with other EntityManager operations if the EntityManager is in a managed or non-optimistic transaction,if the EntityManager has flushed in the current transaction,or if you have used the OpenJPAEntityManager.beginStore method to ensure that a datastore transaction is in progress. Always close the returned connection before attempting any other EntityManager operations. OpenJPA will ensure that the underlying native connection is not released if a datastore transaction is in progress.

您的交易不受管理,但我认为这不是乐观的.此外,在启动事务和执行JDBC操作之间,您还没有完成任何JPA工作,因此我认为您可能属于“如果EntityManager在当前事务中已刷新”的情况.

你没有做的一件事就是在继续使用JPA之前关闭连接.我假设OpenJPA没有返回它正在使用的实际连接,但是在OpenJPA恢复工作之前应该关闭它的一些包装器.

原文链接:https://www.f2er.com/java/444669.html

猜你在找的Java相关文章