@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 配置文件应处于活动状态。

以下示例表明 devintegration 配置文件都应处于活动状态

  • Java

  • Kotlin

@ContextConfiguration
@ActiveProfiles({"dev", "integration"}) (1)
class DeveloperIntegrationTests {
	// class body...
}
1 表明 devintegration 配置文件应处于活动状态。
@ContextConfiguration
@ActiveProfiles(["dev", "integration"]) (1)
class DeveloperIntegrationTests {
	// class body...
}
1 表明 devintegration 配置文件应处于活动状态。
@ActiveProfiles 默认情况下支持继承由超类和封闭类声明的活动 Bean 定义配置文件。您还可以通过实现自定义 ActiveProfilesResolver 并使用 @ActiveProfilesresolver 属性注册它来以编程方式解析活动 Bean 定义配置文件。

请参见 使用环境配置文件进行上下文配置@Nested 测试类配置 以及 @ActiveProfiles javadoc 以获取示例和更多详细信息。