我正在尝试覆盖应用程序属性,文件位于:-color
test/resources/test.properties
但是当我运行任何测试时 - 他们会查找应用程序属性(并且看不到VM选项app.conf):
@TestPropertySource(locations="classpath:test.properties")
@RunWith(SpringJUnit4ClassRunner.class)
@SpringBootTest
@WebAppConfiguration
public abstract class ApplicationAbstractTest {
如何正确配置?
答案 0 :(得分:0)
将ignoreResourceNotFound = true
添加到@PropertySource(value = "file:${app.conf}")