如何在Spring Boot集成测试中读取生成的属性文件?

时间:2016-12-09 10:14:56

标签: java spring maven spring-boot spring-test

在Spring Boot Web应用程序中,我使用git-commit-id-plugin Maven插件生成一个名为git.properties的文件,其中包含所有git提交信息,例如:

git.commit.id=35ca97298544d4ee6f8a5392211ebaa0d9bdafeb

此文件直接在target/classes存储库中生成。所以它包含在类路径中。在运行时,文件通过我的主应用程序类上的注释加载:

@PropertySource({"git.properties"})

然后我可以在我的bean中使用表达式来获取git.properties文件中包含的属性的值:

@Value("${git.commit.id}")
private String gitCommitIdFull; // will contain "35ca97298544d4ee6f8a5392211ebaa0d9bdafeb"

正常运行应用程序时效果非常好。

但我现在正在尝试运行一些运行的集成测试:

@RunWith(SpringRunner.class)
@SpringBootTest
public class SampleSearchDAOTest {
    //tests here...
}

我得到以下异常:

java.lang.IllegalStateException: Failed to load ApplicationContext
(...)
Caused by: org.springframework.beans.factory.BeanDefinitionStoreException:
Failed to parse configuration class [ch.cscf.mds.MdsApiApplication]; 
nested exception is java.io.FileNotFoundException: Could not open ServletContext resource [/git.properties]

显然,测试的运行方式似乎没有使用target/classes作为类路径的基础。

它有什么用?如何让这些测试的运行时知道target/classes/git.properties文件?

我尝试将git.properties文件生成到src/main/resources目录而不是target/classes存储库中。我仍然有同样的错误。

1 个答案:

答案 0 :(得分:3)

默认情况下,测试运行器会查找与测试文件夹相关的资源。例如,当git.properties文件出现在src/test/resources中时,它也应该有效。

@PropertySource({"classpath:git.properties"})告诉您从整个类路径中查找源代码。