@TestPropertySource
@TestPropertySource
是一个类级别的注解,您可以使用它来配置属性文件的路径和内联属性,这些属性将被添加到为集成测试加载的 ApplicationContext
的 Environment
中的 PropertySources
集合中。
以下示例演示如何从类路径声明一个属性文件
-
Java
-
Kotlin
@ContextConfiguration
@TestPropertySource("/test.properties") (1)
class MyIntegrationTests {
// class body...
}
1 | 从类路径根目录中的 test.properties 获取属性。 |
@ContextConfiguration
@TestPropertySource("/test.properties") (1)
class MyIntegrationTests {
// class body...
}
1 | 从类路径根目录中的 test.properties 获取属性。 |
以下示例演示如何声明内联属性
-
Java
-
Kotlin
@ContextConfiguration
@TestPropertySource(properties = { "timezone = GMT", "port: 4242" }) (1)
class MyIntegrationTests {
// class body...
}
1 | 声明 timezone 和 port 属性。 |
@ContextConfiguration
@TestPropertySource(properties = ["timezone = GMT", "port: 4242"]) (1)
class MyIntegrationTests {
// class body...
}
1 | 声明 timezone 和 port 属性。 |
有关示例和更多详细信息,请参阅 使用测试属性源的上下文配置。