从 JUnit 测试中访问 spring 上下文

Posted

技术标签:

【中文标题】从 JUnit 测试中访问 spring 上下文【英文标题】:Get access to spring context from JUnit test 【发布时间】:2016-06-19 17:28:01 【问题描述】:

我尝试为 spring 框架运行测试。我只使用 xml 上下文。在我指定的测试(JUnit)类中

@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(locations = "springContext.xml")
public class MyTest extends TestCase 
    @Test
    public void test() 

    

但我不知道如何在@Test 方法中访问spring 上下文?我不能使用@Autowired 注释,因为我不使用注释驱动的上下文

【问题讨论】:

我很确定即使您的 bean 仅在 xml 中使用 @Autowired,您仍然可以自动装配。它将按类型和名称自动装配。 @gowayward, xml config中不用指定<context:annotation-config />吗? Autowired 与注释驱动的上下文无关。 【参考方案1】:

测试类就像一个普通的bean。到目前为止,您可以在测试类中使用这两种方法:

自动装配应用程序上下文 实现 ContextAware 接口

见How to inject ApplicationContext itself

【讨论】:

以上是关于从 JUnit 测试中访问 spring 上下文的主要内容,如果未能解决你的问题,请参考以下文章

跨junit测试类重用spring应用程序上下文

JUnit4、Spring、Hibernate 测试上下文设置

如何在 JUnit 测试中使用 Spring defaultValidator

在不创建上下文的情况下禁用 Spring 和 Junit5 测试

从 Spring applicationContext xml / Junit 测试用例访问 Web/App Server 中定义的 JNDI 数据源

如何推迟调用@PostConstruct,直到jUnit设置测试上下文