您好我最近更新了我的spring启动应用程序并注意到了新功能(DirtiesContext.ClassMode.BEFORE_CLASS),这似乎符合我的需要,因为我有使用带注释的方法@RabbitListener重新加载bean的问题,出于某种原因Spring重新加载了该bean ,但老豆正在使用兔子听众。 (见here)
我的代码:
Popups
在添加DirtiesContext.ClassMode.BEFORE_CLASS后,Spring停止从以下位置加载bean的问题:
@RunWith(SpringJUnit4ClassRunner.class)
@SpringApplicationConfiguration(classes ={ServerConfig.class,ServerThroughAMQPBrokerRabbitMQIntegrationTestConfig.class})
@Category({IntegrationTest.class})
@TestPropertySource("classpath:test.properties")
@DirtiesContext(classMode = DirtiesContext.ClassMode.BEFORE_CLASS)
@TestExecutionListeners(listeners = {DirtiesContextBeforeModesTestExecutionListener.class, DirtiesContextTestExecutionListener.class})
public class ServerThroughAMQPBrokerRabbitMQIntegrationTest {
所以问题:
如何使用DirtiesContext.ClassMode.BEFORE_CLASS加载spring上下文?
答案 0 :(得分:5)
此处的解决方案是将DependencyInjectionTestExecutionListener添加到@TestExecutionListeners
的列表中,这将为依赖项注入提供支持。
TestExecutionListener,它为依赖注入提供支持 和初始化测试实例。
@RunWith(SpringJUnit4ClassRunner.class)
@SpringApplicationConfiguration(classes ={ServerConfig.class,ServerThroughAMQPBrokerRabbitMQIntegrationTestConfig.class})
@Category({IntegrationTest.class})
@TestPropertySource("classpath:test.properties")
@DirtiesContext(classMode = DirtiesContext.ClassMode.BEFORE_CLASS)
@TestExecutionListeners(listeners = {DirtiesContextBeforeModesTestExecutionListener.class, DirtiesContextTestExecutionListener.class, DependencyInjectionTestExecutionListener.class})
public class ServerThroughAMQPBrokerRabbitMQIntegrationTest {
这是来自DirtiesContextBeforeModesTestExecutionListener javadoc
将TestExecutionListeners与默认值合并时,此侦听器 将在之前自动订购 DependencyInjectionTestExecutionListener;否则,这个听众 必须手动配置为在执行之前执行 DependencyInjectionTestExecutionListener。
您还可以删除测试类上的@TestExecutionListeners
注释。如果没有这样的注释,Spring将注入默认监听器,其中包括DirtiesContextBeforeModesTestExecutionListener.class
和DirtiesContextTestExecutionListener.class
以下是没有SpringBoot应用程序的@TestExecutionListeners
注释的默认侦听器列表