作者热门文章
- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
这个问题看起来非常简单,但奇怪的是我没有找到解决方案。
我的问题是关于在 SpringBootTest
中添加/声明一个 bean,而不是覆盖一个 bean,也不是使用 mockito 模拟一个 bean。
这是我在尝试最简单的实现我的实际需求时得到的结果(但它不起作用):
一些服务、bean 和配置:
@Value // lombok
public class MyService {
private String name;
}
@Value // lombok
public class MyClass {
private MyService monitoring;
}
@Configuration
public class SomeSpringConfig {
@Bean
public MyClass makeMyClass(MyService monitoring){
return new MyClass(monitoring);
}
}
测试:
@RunWith(SpringRunner.class)
@SpringBootTest(classes = { SomeSpringConfig.class })
public class SomeSpringConfigTest {
private String testValue = "testServiceName";
// this bean is not used
@Bean
public MyService monitoringService(){ return new MyService(testValue); }
// thus this bean cannot be constructed using SomeSpringConfig
@Autowired
public MyClass myClass;
@Test
public void theTest(){
assert(myClass.getMonitoring().getName() == testValue);
}
}
现在,如果我将 @Bean public MyService monitoring(){ ... }
替换为 @MockBean public MyService monitoring;
,它就可以工作了。我觉得很奇怪,我可以很容易地模拟一个 bean,而不是简单地提供它。
=> 那么我应该如何为一个测试添加一个我自己的 bean?
编辑:
最佳答案
Spring Test 需要知道您正在使用什么配置(因此需要知道在哪里扫描它加载的 bean)。为了实现你想要的,你有更多的选择,最基本的是这两个:
在包含您的 bean 的测试类之外创建配置类
@Configuration
public class TestConfig {
@Bean
public MyService monitoringService() {
return new MyService();
}
}
然后将其添加到测试作为配置类 @SpringBootTest(classes = { SomeSpringConfig.class, TestConfig.class })
或
如果你只需要在这个特定的测试中使用这个配置,你可以在静态内部类中定义它
public class SomeSpringConfigTest {
@Configuration
static class ContextConfiguration {
@Bean
public MyService monitoringService() {
return new MyService();
}
}
}
这个会被spring boot测试自动识别加载
关于java - 如何在SpringBootTest中添加一个bean,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57772342/
我是一名优秀的程序员,十分优秀!