如何使用自定义bean定义在集成测试中覆盖Spring Bean?

时间:2019-02-06 21:24:45

标签: java spring spring-test

我想重用Spring生产上下文配置,但是用另一个替换一些bean。如果要使用模拟覆盖它们,可以使用@MockBean,它可以完全满足我的需要(覆盖bean),但不允许我自己配置​​新的bean。

我知道还有另一种使用@ContextConfiguration的方法,但对我来说似乎太冗长了。

谢谢。

1 个答案:

答案 0 :(得分:2)

您可以使用@SpyBean-然后可以在特定情况下对bean进行存根(例如@MockBean的情况),否则将使用真正的bean。

此外,如果您确实需要为测试定义自定义bean定义,则可以将@Primary / @Profile / @ContextConfiguration的组合用于此目的。

例如:

@RunWith(SpringRunner.class)
@SpringBootTest
@ActiveProfiles("test")
@ContextConfiguration(classes = {TestConfig.class, ApplicationConfig.class})
public class ApplicatonTest {
    @Profile("test")
    @Configuration
    static class TestConfig {

        @Bean
        @Primary
        public SomeBean testBeanDefinition() {
            SomeBean testBean = new SomeBean();
            // configure SomeBean for test
            return testBean;
        }
    }
    // tests
}