如何在spring boot中的每个测试类之后销毁和重新创建bean

时间:2016-12-05 12:43:58

标签: junit spring-boot spring-test

我有应用程序,我创建bean A来安排在配置中定义的任务,但在测试中我想在每个测试类之前创建它并在每个类之后销毁。

我需要它,因为我更新了每个类中的属性,例如:

@TestPropertySource(properties = ["my.property=valueForTest"])

是否可以在JUnit / Spring中使用?

1 个答案:

答案 0 :(得分:1)

我只知道通过@DirtiesContext扔掉整个上下文的选项。这显然也会丢掉你的豆子。