5

我正在使用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();
}

在流程结束时,将实体保存到 DB 中。但这里的要求是应该异步完成。所以考虑调用这个方法:

@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. @Async注释移动到HistoryWriter.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"/>

4

1 回答 1

6

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

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

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

这意味着您的@Async方法使用的事务与 Spring TestContext Framework 自动回滚的测试管理事务不同。

因此,解决问题的唯一可能方法是手动撤消对数据库的更改。您可以使用JdbcTestUtils在方法中以编程方式执行 SQL 脚本来执行此操作@AfterTransaction,或者您可以配置一个 SQL 脚本以通过 Spring 的@Sql注释以声明方式执行(使用执行阶段)。对于后者,请参阅如何在 @Before 方法之前执行 @Sql以了解详细信息。

问候,

Sam(Spring TestContext 框架的作者

于 2016-08-20T14:37:43.807 回答