上下文配置继承
@ContextConfiguration
支持布尔值inheritLocations
和 inheritInitializers
属性,它们表示是否应继承超类声明的资源位置或组件类和上下文初始化器。这两个标志的默认值均为true
。这意味着测试类继承由任何超类声明的资源位置或组件类以及上下文初始化器。具体来说,测试类的资源位置或组件类将附加到超类声明的资源位置或带注释的类的列表中。类似地,给定测试类的初始化器将添加到测试超类定义的初始化器集中。因此,子类可以选择扩展资源位置、组件类或上下文初始化器。
如果@ContextConfiguration
中的inheritLocations
或 inheritInitializers
属性设置为false
,则测试类的资源位置或组件类以及上下文初始化器将分别覆盖并有效地替换超类定义的配置。
测试配置也可以从封闭类继承。有关详细信息,请参阅@Nested 测试类配置。 |
在以下示例中,它使用 XML 资源位置,ExtendedTest
的ApplicationContext
是按顺序从base-config.xml
和 extended-config.xml
加载的。因此,在extended-config.xml
中定义的 Bean 可以覆盖(即替换)在base-config.xml
中定义的 Bean。以下示例显示了一个类如何扩展另一个类并同时使用其自己的配置文件和超类的配置文件
-
Java
-
Kotlin
@ExtendWith(SpringExtension.class)
// ApplicationContext will be loaded from "/base-config.xml"
// in the root of the classpath
@ContextConfiguration("/base-config.xml") (1)
class BaseTest {
// class body...
}
// ApplicationContext will be loaded from "/base-config.xml" and
// "/extended-config.xml" in the root of the classpath
@ContextConfiguration("/extended-config.xml") (2)
class ExtendedTest extends BaseTest {
// class body...
}
1 | 在超类中定义的配置文件。 |
2 | 在子类中定义的配置文件。 |
@ExtendWith(SpringExtension::class)
// ApplicationContext will be loaded from "/base-config.xml"
// in the root of the classpath
@ContextConfiguration("/base-config.xml") (1)
open class BaseTest {
// class body...
}
// ApplicationContext will be loaded from "/base-config.xml" and
// "/extended-config.xml" in the root of the classpath
@ContextConfiguration("/extended-config.xml") (2)
class ExtendedTest : BaseTest() {
// class body...
}
1 | 在超类中定义的配置文件。 |
2 | 在子类中定义的配置文件。 |
类似地,在以下示例中,它使用组件类,ExtendedTest
的ApplicationContext
是按顺序从BaseConfig
和 ExtendedConfig
类加载的。因此,在ExtendedConfig
中定义的 Bean 可以覆盖(即替换)在BaseConfig
中定义的 Bean。以下示例显示了一个类如何扩展另一个类并同时使用其自己的配置类和超类的配置类
-
Java
-
Kotlin
// ApplicationContext will be loaded from BaseConfig
@SpringJUnitConfig(BaseConfig.class) (1)
class BaseTest {
// class body...
}
// ApplicationContext will be loaded from BaseConfig and ExtendedConfig
@SpringJUnitConfig(ExtendedConfig.class) (2)
class ExtendedTest extends BaseTest {
// class body...
}
1 | 在超类中定义的配置类。 |
2 | 在子类中定义的配置类。 |
// ApplicationContext will be loaded from BaseConfig
@SpringJUnitConfig(BaseConfig::class) (1)
open class BaseTest {
// class body...
}
// ApplicationContext will be loaded from BaseConfig and ExtendedConfig
@SpringJUnitConfig(ExtendedConfig::class) (2)
class ExtendedTest : BaseTest() {
// class body...
}
1 | 在超类中定义的配置类。 |
2 | 在子类中定义的配置类。 |
在以下示例中,它使用上下文初始化器,ExtendedTest
的ApplicationContext
是通过使用BaseInitializer
和 ExtendedInitializer
初始化的。但是请注意,初始化器调用的顺序取决于它们是否实现了 Spring 的Ordered
接口或是否使用 Spring 的@Order
注解或标准的@Priority
注解进行注释。以下示例显示了一个类如何扩展另一个类并同时使用其自己的初始化器和超类的初始化器
-
Java
-
Kotlin
// ApplicationContext will be initialized by BaseInitializer
@SpringJUnitConfig(initializers = BaseInitializer.class) (1)
class BaseTest {
// class body...
}
// ApplicationContext will be initialized by BaseInitializer
// and ExtendedInitializer
@SpringJUnitConfig(initializers = ExtendedInitializer.class) (2)
class ExtendedTest extends BaseTest {
// class body...
}
1 | 在超类中定义的初始化器。 |
2 | 在子类中定义的初始化器。 |
// ApplicationContext will be initialized by BaseInitializer
@SpringJUnitConfig(initializers = [BaseInitializer::class]) (1)
open class BaseTest {
// class body...
}
// ApplicationContext will be initialized by BaseInitializer
// and ExtendedInitializer
@SpringJUnitConfig(initializers = [ExtendedInitializer::class]) (2)
class ExtendedTest : BaseTest() {
// class body...
}
1 | 在超类中定义的初始化器。 |
2 | 在子类中定义的初始化器。 |