@ActiveProfiles
@ActiveProfiles
是一个注解,可以应用于测试类,以声明在为集成测试加载ApplicationContext
时应激活哪些Bean定义配置文件。
以下示例表示应激活dev
配置文件
-
Java
-
Kotlin
@ContextConfiguration
@ActiveProfiles("dev") (1)
class DeveloperTests {
// class body...
}
1 | 指示应激活dev 配置文件。 |
@ContextConfiguration
@ActiveProfiles("dev") (1)
class DeveloperTests {
// class body...
}
1 | 指示应激活dev 配置文件。 |
以下示例表示应同时激活dev
和integration
配置文件
-
Java
-
Kotlin
@ContextConfiguration
@ActiveProfiles({"dev", "integration"}) (1)
class DeveloperIntegrationTests {
// class body...
}
1 | 指示应激活dev 和integration 配置文件。 |
@ContextConfiguration
@ActiveProfiles(["dev", "integration"]) (1)
class DeveloperIntegrationTests {
// class body...
}
1 | 指示应激活dev 和integration 配置文件。 |
@ActiveProfiles 默认情况下支持继承超类和封闭类声明的活动Bean定义配置文件。您还可以通过实现自定义ActiveProfilesResolver 并使用@ActiveProfiles 的resolver 属性注册它来以编程方式解析活动Bean定义配置文件。 |
请参阅使用环境配置文件的上下文配置、@Nested
测试类配置以及@ActiveProfiles
javadoc以获取示例和更多详细信息。