接口的使用
org.springframework.core.AliasRegistry
使用AliasRegistry的程序包 程序包 说明 org.springframework.beans.factory.support Classes supporting theorg.springframework.beans.factorypackage.org.springframework.beans.factory.xml Contains an abstract XML-basedBeanFactoryimplementation, including a standard "spring-beans" XSD.org.springframework.context.annotation Annotation support for the Application Context, including JSR-250 "common" annotations, component-scanning, and Java-based metadata for creating Spring-managed objects.org.springframework.context.support Classes supporting the org.springframework.context package, such as abstract base classes for ApplicationContext implementations and a MessageSource implementation.org.springframework.core Provides basic classes for exception handling and version detection, and other core helpers that are not specific to any part of the framework.org.springframework.jca.context Integration package that allows for deploying a Spring application context as a JCA 1.7 compliant RAR file.org.springframework.web.context.support Classes supporting theorg.springframework.web.contextpackage, such as WebApplicationContext implementations and various utility classes.org.springframework.beans.factory.support中AliasRegistry的使用
org.springframework.beans.factory.support中AliasRegistry的子接口 修饰符和类型 接口 说明 interfaceBeanDefinitionRegistryInterface for registries that hold bean definitions, for example RootBeanDefinition and ChildBeanDefinition instances.实现AliasRegistry的org.springframework.beans.factory.support中的类 修饰符和类型 类 说明 classAbstractAutowireCapableBeanFactoryAbstract bean factory superclass that implements default bean creation, with the full capabilities specified by theRootBeanDefinitionclass.classAbstractBeanFactoryAbstract base class forBeanFactoryimplementations, providing the full capabilities of theConfigurableBeanFactorySPI.classDefaultListableBeanFactorySpring's default implementation of theConfigurableListableBeanFactoryandBeanDefinitionRegistryinterfaces: a full-fledged bean factory based on bean definition metadata, extensible through post-processors.classDefaultSingletonBeanRegistryGeneric registry for shared bean instances, implementing theSingletonBeanRegistry.classFactoryBeanRegistrySupportSupport base class for singleton registries which need to handleFactoryBeaninstances, integrated withDefaultSingletonBeanRegistry's singleton management.classSimpleBeanDefinitionRegistrySimple implementation of theBeanDefinitionRegistryinterface.org.springframework.beans.factory.xml中AliasRegistry的使用
实现AliasRegistry的org.springframework.beans.factory.xml中的类 修饰符和类型 类 说明 classXmlBeanFactory已过时。as of Spring 3.1 in favor ofDefaultListableBeanFactoryandXmlBeanDefinitionReaderorg.springframework.context.annotation中AliasRegistry的使用
实现AliasRegistry的org.springframework.context.annotation中的类 修饰符和类型 类 说明 classAnnotationConfigApplicationContextStandalone application context, accepting component classes as input — in particular@Configuration-annotated classes, but also plain@Componenttypes and JSR-330 compliant classes usingjavax.injectannotations.org.springframework.context.support中AliasRegistry的使用
实现AliasRegistry的org.springframework.context.support中的类 修饰符和类型 类 说明 classGenericApplicationContextGeneric ApplicationContext implementation that holds a single internalDefaultListableBeanFactoryinstance and does not assume a specific bean definition format.classGenericGroovyApplicationContextAnApplicationContextimplementation that extendsGenericApplicationContextand implementsGroovyObjectsuch that beans can be retrieved with the dot de-reference syntax instead of usingAbstractApplicationContext.getBean(java.lang.String).classGenericXmlApplicationContextConvenient application context with built-in XML support.classStaticApplicationContextApplicationContextimplementation which supports programmatic registration of beans and messages, rather than reading bean definitions from external configuration sources.org.springframework.core中AliasRegistry的使用
实现AliasRegistry的org.springframework.core中的类 修饰符和类型 类 说明 classSimpleAliasRegistrySimple implementation of theAliasRegistryinterface.org.springframework.jca.context中AliasRegistry的使用
实现AliasRegistry的org.springframework.jca.context中的类 修饰符和类型 类 说明 classResourceAdapterApplicationContextApplicationContextimplementation for a JCA ResourceAdapter.org.springframework.web.context.support中AliasRegistry的使用
实现AliasRegistry的org.springframework.web.context.support中的类 修饰符和类型 类 说明 classGenericWebApplicationContextSubclass ofGenericApplicationContext, suitable for web environments.classStaticWebApplicationContextStaticWebApplicationContextimplementation for testing.