Annotation Interface Import
@Configuration classes.
Provides functionality equivalent to the Framework' <import/> element in beans XML.
Allows for importing @Configuration classes, ImportSelector and
ImportBeanDefinitionRegistrar implementations, as well as regular component
classes (analogous to StandardApplicationContext.register(java.lang.Class<?>...)).
@Bean definitions declared in imported @Configuration classes should be
accessed by using @Autowired
injection. Either the bean itself can be autowired, or the configuration class instance
declaring the bean can be autowired. The latter approach allows for explicit, IDE-friendly
navigation between @Configuration class methods.
May be declared at the class level or as a meta-annotation.
If XML or other non-@Configuration bean definition resources need to be
imported, use the @ImportResource annotation instead.
- 作者:
- Chris Beams, Juergen Hoeller, TODAY
2019-10-01 17:27 - 另请参阅:
-
必需元素概要
所需元素
-
元素详细资料
-
value
Class<?>[] value
-