在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
存储库中。我仍然有同样的错误。
答案 0 :(得分:3)
默认情况下,测试运行器会查找与测试文件夹相关的资源。例如,当git.properties
文件出现在src/test/resources
中时,它也应该有效。
@PropertySource({"classpath:git.properties"})
告诉您从整个类路径中查找源代码。