作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我刚刚空降到一个 spring 项目中,他们不相信单元测试。
我正在尝试建立自己的单元测试环境。
我可以知道注释 @ContextConfiguration
指的是什么吗?
@Repository 呢,我好像没法初始化。
文件是什么样子的?它通常位于何处?
最佳答案
@ContextConfiguration
用于确定如何在集成测试中加载和配置 ApplicationContext
,就像在这个 JUnit 测试中一样:
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration("/test5.xml")
public class Test5 {
@Autowired
ConnectionFactory f1;
@Test
public void test() throws Exception {
...
关于java - @ContextConfiguration 指的是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17987064/
我是一名优秀的程序员,十分优秀!