我有我的Spring Boot主课程:
@SpringBootApplication @PropertySource("file:/my/file/properties") public class Application extends SpringBootServletInitializer { @Override protected SpringApplicationBuilder configure(SpringApplicationBuilder builder) { return builder.sources(Application.class); } //main method }
我正在从外部文件读取属性(使用@PropertySource)。现在,我有一个集成测试:
@PropertySource
@RunWith(SpringJUnit4ClassRunner.class) @SpringApplicationConfiguration(classes= Application.class) @WebIntegrationTest @TestPropertySource("file:/my/test/file/properties") // <--- public class MyTest { //some tests }
我需要使用另一个外部属性文件,从不同的指示中@PropertySource的Application类。因此,我添加了@TestPropertySource,但似乎此注释并未覆盖@PropertySource。
Application
@TestPropertySource
我能做什么?
提前致谢。
使用这种方式:
@TestPropertySource(locations = "classpath:test.properties")
并将测试属性文件放入 src/test/resources
src/test/resources