我决定编写一个没有“@SpringBootTest”的“组件”测试。面临 application.yml 中的某些设置不起作用的问题。
我尝试更改日志记录级别 - 不起作用。我究竟做错了什么?
测试演示应用测试
@RunWith(SpringRunner.class)
@EnableConfigurationProperties
@ContextConfiguration(classes = TestConf.class, initializers = TestContextInitializer.class)
public class TestdemoApplicationTests {
@Test
public void logLevel() {
}
}
测试会议
@Configuration
public class TestConf {
}
TestContextInitializer
public class TestContextInitializer implements ApplicationContextInitializer<ConfigurableApplicationContext> {
@Override
public void initialize(ConfigurableApplicationContext applicationContext) {
try {
Resource resource = applicationContext.getResource("classpath:application.yml");
YamlPropertySourceLoader sourceLoader = new YamlPropertySourceLoader();
PropertySource<?> yamlTestProperties = sourceLoader.load("applicationProperties", resource, null);
applicationContext.getEnvironment().getPropertySources().addFirst(yamlTestProperties);
String[] profiles = applicationContext.getEnvironment().getProperty("spring.profiles.active").replaceAll(" ", "").split(",");
} catch (IOException e) {
throw new RuntimeException(e);
}
}
}
应用程序.yml
spring:
profiles:
active: junit
logging:
level:
ROOT: INFO
springframework.web: INFO
hibernate: INFO
PS 我知道我的问题可能是微不足道的,但在我问之前,我在 Google 和 Stack 上查看了很多信息。PSS 不要使用@SpringBootTest