gpt4 book ai didi

java - 如何在@Transactional 方法中手动强制提交?

转载 作者:IT老高 更新时间:2023-10-28 13:03:04 51 4
gpt4 key购买 nike

我正在使用 Spring/Spring-data-JPA,发现自己需要在单元测试中手动强制提交。我的用例是我正在做一个多线程测试,其中我必须使用在线程产生之前持久化的数据。

不幸的是,鉴于测试是在 @Transactional 事务中运行的,即使是 flush 也无法让生成的线程访问它。

   @Transactional   
public void testAddAttachment() throws Exception{
final Contract c1 = contractDOD.getNewTransientContract(15);
contractRepository.save(c1);

// Need to commit the saveContract here, but don't know how!
em.getTransaction().commit();

List<Thread> threads = new ArrayList<>();
for( int i = 0; i < 5; i++){
final int threadNumber = i;
Thread t = new Thread( new Runnable() {
@Override
@Transactional
public void run() {
try {
// do stuff here with c1

// sleep to ensure that the thread is not finished before another thread catches up
Thread.sleep(1000);
} catch (InterruptedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
});
threads.add(t);
t.start();
}

// have to wait for all threads to complete
for( Thread t : threads )
t.join();

// Need to validate test results. Need to be within a transaction here
Contract c2 = contractRepository.findOne(c1.getId());
}

我尝试过使用实体管理器,但这样做时收到错误消息:

org.springframework.dao.InvalidDataAccessApiUsageException: Not allowed to create transaction on shared EntityManager - use Spring transactions or EJB CMT instead; nested exception is java.lang.IllegalStateException: Not allowed to create transaction on shared EntityManager - use Spring transactions or EJB CMT instead
at org.springframework.orm.jpa.EntityManagerFactoryUtils.convertJpaAccessExceptionIfPossible(EntityManagerFactoryUtils.java:293)
at org.springframework.orm.jpa.aspectj.JpaExceptionTranslatorAspect.ajc$afterThrowing$org_springframework_orm_jpa_aspectj_JpaExceptionTranslatorAspect$1$18a1ac9(JpaExceptionTranslatorAspect.aj:33)

有没有办法提交事务并继续它?我一直找不到任何允许我调用 commit() 的方法。

最佳答案

在测试仅在提交时调用的 hibernate 事件监听器期间,我有一个类似的用例。

解决方案是将要持久化的代码包装到另一个用 REQUIRES_NEW 注释的方法中。 (在另一个类中)这样会产生一个新事务,并在方法返回后发出刷新/提交。

Tx prop REQUIRES_NEW

请记住,这可能会影响所有其他测试!所以相应地编写它们,否则您需要确保在测试运行后可以清理。

关于java - 如何在@Transactional 方法中手动强制提交?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24338150/

51 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com