【发布时间】:2021-09-15 17:10:27
【问题描述】:
@ExtendWith(SpringExtension.class)
@WebMvcTest(MyClass.class)
@TestPropertySource(locations="classpath:application-test.yml")
//像这样的吗?
【问题讨论】:
标签: spring-boot spring-mvc-test
@ExtendWith(SpringExtension.class)
@WebMvcTest(MyClass.class)
@TestPropertySource(locations="classpath:application-test.yml")
//像这样的吗?
【问题讨论】:
标签: spring-boot spring-mvc-test
这应该仍然能够在您的应用程序的测试文件中找到属性:
@Autowired
private Environment env;
// Load data
String data = env.getProperty("some.property")
【讨论】: