在JUnit测试中将Maven属性传递给Spring Application上下文文件

时间:2013-11-13 15:22:40

标签: java spring maven junit

我正在尝试将JUnit测试用于项目,但是我无法从注入应用程序上下文xml文件的pom中获取属性。具体来说,我想注入env.code变量,该变量定义运行应用程序的环境。

目前,pom包含

<properties>
    <env.code>dev</env.code>
    ...
</properties>

当应用程序正常运行时,web.xml文件将获取env.code变量并将其重命名为“environment”。 “environment”变量在引用的上下文配置xml文件中使用。

<context-param>
    <param-name>environment</param-name>
    <param-value>${env.code}</param-value>
</context-param>

<context-param>
    <param-name>contextConfigLocation</param-name>
    <param-value>classpath:SpringBeans.xml classpath:SpringDataSource.xml</param-value>
</context-param>

我想在JUnit测试中复制此行为。到目前为止,我的简单测试用例看起来像

@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration({"/SpringBeans.xml", "/SpringDataSource.xml"})
public class MyTest {

    @Test
    public void testOne() {}

}

由于我没有运行Web应用程序,因此绕过web.xml文件,因为解析应用程序上下文xml文件时出现问题,因此尝试运行测试时出错,因为$ {environment}未被替换。

如何将pom中定义的env.code值注入应用程序上下文文件中的$ {environment}占位符?

1 个答案:

答案 0 :(得分:6)

有关XML文件的

Configure Maven to do resource filtering。然后,您可以使用POM中的属性。