@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测试类配置以及@ActiveProfilesjavadoc以获取示例和更多详细信息。