JPA锁定实体用于阅读

时间:2011-11-11 13:06:27

标签: java jpa transactions

我有代码:

public static Computation findByDateAndPaymentSystem(EntityManager em, Calendar date, PaymentSystem paymentSystem) throws SCException {
        Query query = em.createNamedQuery("Computation.findByDateAndPaymentSystem");
        query.setParameter("date", date);
        query.setParameter("ps", paymentSystem);
        List<Computation> computationList = query.getResultList();
        if (computationList != null && computationList.size() > 0) {
            if (computationList.size() == 1) {
                return computationList.get(0);
            } else {
                throw new SCException("Not unique result in computation for date '"
                        + new SimpleDateFormat("dd.MM.yyyy").format(new Date(date.getTimeInMillis())) + "' and paymentSystem = '"
                        + paymentSystem.getShortName() + "'");
            }
        } else {
            Computation computation = new Computation();
            computation.setDate(date);
            computation.setComputationState(ComputationState.CREATED);
            computation.setPaymentSystem(paymentSystem);
            em.persist(computation);
            return computation;
        }
    }

主要的想法是每个日期和支付系统应该有一个计算实例。 但是如果在两个不同的事务中调用此方法,那么可能的下一个场景: 第一次事务检查,如果没有这个日期的计算并创建计算但仍未提交创建的计算,另一个事务检查并创建计算,则两个事务都提交。因此,每个日期将有两次计算。

如何预防呢?

1 个答案:

答案 0 :(得分:1)

Computation.datePaymentSystem组合应该是唯一的(约束),然后第二次插入将失败,或者如果找到它们,您可以尝试合并多个条目。解决方案取决于您的用例和交易策略和设置。