gpt4 book ai didi

java - 使用@Async 方法的 JUnit 回滚事务

转载 作者:塔克拉玛干 更新时间:2023-11-01 23:06:31 25 4
gpt4 key购买 nike

我正在使用 SpringJUnit4ClassRunner 编写集成测试.我有一个基类:

@RunWith(SpringJUnit4ClassRunner.class)
@WebAppConfiguration
@ContextConfiguration({ /*my XML files here*/})
@Ignore
public class BaseIntegrationWebappTestRunner {

@Autowired
protected WebApplicationContext wac;

@Autowired
protected MockServletContext servletContext;

@Autowired
protected MockHttpSession session;

@Autowired
protected MockHttpServletRequest request;

@Autowired
protected MockHttpServletResponse response;

@Autowired
protected ServletWebRequest webRequest;

@Autowired
private ResponseTypeFilter responseTypeFilter;

protected MockMvc mockMvc;

@BeforeClass
public static void setUpBeforeClass() {

}

@AfterClass
public static void tearDownAfterClass() {

}

@Before
public void setUp() {
this.mockMvc = MockMvcBuilders.webAppContextSetup(this.wac).addFilter(responseTypeFilter).build();
}

@After
public void tearDown() {
this.mockMvc = null;
}
}

然后我扩展它并使用 mockMvc 创建一个测试:

public class MyTestIT extends BaseMCTIntegrationWebappTestRunner {

@Test
@Transactional("jpaTransactionManager")
public void test() throws Exception {
MvcResult result = mockMvc
.perform(
post("/myUrl")
.contentType(MediaType.APPLICATION_XML)
.characterEncoding("UTF-8")
.content("content")
.headers(getHeaders())
).andExpect(status().isOk())
.andExpect(content().contentType(MediaType.APPLICATION_XML))
.andExpect(content().encoding("ISO-8859-1"))
.andExpect(xpath("/*[local-name() ='myXPath']/")
.string("result"))
.andReturn();
}

在流程的最后,一个实体被保存到数据库中。但是这里的要求是应该异步完成。所以考虑这个方法叫做:

@Component
public class AsyncWriter {

@Autowired
private HistoryWriter historyWriter;

@Async
public void saveHistoryAsync(final Context context) {
History history = historyWriter.saveHistory(context);
}
}

然后 HistoryWriter被称为:

@Component
public class HistoryWriter {

@Autowired
private HistoryRepository historyRepository;

@Transactional("jpaTransactionManager")
public History saveHistory(final Context context) {
History history = null;
if (context != null) {
try {
history = historyRepository.saveAndFlush(getHistoryFromContext(context));
} catch (Throwable e) {
LOGGER.error(String.format("Cannot save history for context: [%s] ", context), e);
}
}
return history;
}
}

所有这一切的问题在于,在测试完成后,History对象留在数据库中。我需要进行测试事务以回滚最后的所有更改。

现在,我到目前为止所尝试的:

  1. 删除 @Async注解。显然,这不是解决方案,但这样做是为了确认回滚将在没有它的情况下执行。确实如此。
  2. 移动@AsyncHistoryWriter.saveHistory() 的注释使用 @Transactional 将它放在一个地方的方法.本文https://dzone.com/articles/spring-async-and-transaction建议它应该以这种方式工作,但对我来说,测试后没有回滚。
  3. 交换这两个注释的位置。它也没有给出预期的结果。

有谁知道如何强制回滚异步方法中所做的数据库更改?

旁注:

交易配置:

<tx:annotation-driven proxy-target-class="true" transaction- manager="jpaTransactionManager"/>

异步配置:

<task:executor id="executorWithPoolSizeRange" pool-size="50-75" queue-capacity="1000" />
<task:annotation-driven executor="executorWithPoolSizeRange" scheduler="taskScheduler"/>

最佳答案

Does anyone have any idea how to force rollback of the DB changes made in asynchronous method?

不幸的是,这是不可能的。

Spring 通过ThreadLocal 变量管理事务状态。因此,在另一个线程(例如,为您的 @Async 方法调用创建的线程)中启动的事务可以参与为父线程管理的事务。

这意味着您的@Async 方法使用的事务从不test-managed transaction 相同由 Spring TestContext Framework 自动回滚。

因此,解决您的问题的唯一可能方法是手动撤消对数据库的更改。您可以使用 JdbcTestUtils@AfterTransaction 方法中以编程方式执行 SQL 脚本,或者您也可以将 SQL 脚本配置为通过 Spring 的 @ 以声明方式执行Sql 注释(使用 after 执行阶段)。对于后者,请参阅 How to execute @Sql before a @Before method了解详情。

问候,

Sam(Spring TestContext Framework 的作者)

关于java - 使用@Async 方法的 JUnit 回滚事务,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39042930/

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