在测试方法中重新加载或刷新Spring应用程序上下文?
我需要在我的测试类的单个方法中更改在我的应用程序Context中处于活动状态的Spring配置文件,为此,我需要在刷新比赛之前运行一行代码,因为我使用的是ProfileResolver。我尝试了以下方法:
@WebAppConfiguration
@ContextConfiguration(locations = {"/web/WEB-INF/spring.xml"})
@ActiveProfiles(resolver = BaseActiveProfilesResolverTest.class)
public class ControllerTest extends AbstractTestNGSpringContextTests {
@Test
public void test() throws Exception {
codeToSetActiveProfiles(...);
((ConfigurableApplicationContext)this.applicationContext).refresh();
... tests here ...
codeToSetActiveProfiles(... back to prior profiles ...);
... ideally refresh/reload the context for future tests
}
}
但我得到:
java.lang.IllegalStateException: GenericApplicationContext does not support multiple refresh attempts: just call 'refresh' once
DirtiesContext对我不起作用,因为它是在类/方法执行之后运行的,而不是在类/方法执行之前,无论如何,我需要在运行刷新/重新加载之前执行一行代码。
有什么建议吗?我试图通过正在运行的侦听器/钩子来查看,但我没有看到一个明显的位置来插入自己来实现这种行为。