在SpringBootTest中使用spring.factories

时间:2019-10-15 18:52:52

标签: spring-boot testing factories

我们的项目使用'com.github.zeldigas.spring.env.HoconPropertySourceLoader'读取hocon属性文件,我想在SpringBootTest环境中读取该文件的配置。我用以下值定义了/src/main/resources/META-INF/spring.factories:

org.springframework.boot.env.PropertySourceLoader=com.github.zeldigas.spring.env.HoconPropertySourceLoader

主要应用程序正常工作,但是当我尝试执行基本测试时,由于无法读取.conf文件,因此它会引发有关数据库属性的错误。 我尝试使用经典的.properties文件并可以工作,但是我们需要读取.conf文件。有什么建议吗?

0 个答案:

没有答案