Uses of Interface
org.springframework.core.AliasRegistry
Package
Description
Classes supporting the
org.springframework.beans.factory
package.Annotation support for the Application Context, including JSR-250 "common"
annotations, component-scanning, and Java-based metadata for creating
Spring-managed objects.
Classes supporting the org.springframework.context package,
such as abstract base classes for ApplicationContext
implementations and a MessageSource implementation.
Provides basic classes for exception handling and version detection,
and other core helpers that are not specific to any part of the framework.
Classes supporting the
org.springframework.web.context
package,
such as WebApplicationContext implementations and various utility classes.-
Uses of AliasRegistry in org.springframework.beans.factory.support
Modifier and TypeInterfaceDescriptioninterface
Interface for registries that hold bean definitions, for example RootBeanDefinition and ChildBeanDefinition instances.Modifier and TypeClassDescriptionclass
Abstract bean factory superclass that implements default bean creation, with the full capabilities specified by theRootBeanDefinition
class.class
Abstract base class forBeanFactory
implementations, providing the full capabilities of theConfigurableBeanFactory
SPI.class
Spring's default implementation of theConfigurableListableBeanFactory
andBeanDefinitionRegistry
interfaces: a full-fledged bean factory based on bean definition metadata, extensible through post-processors.class
Generic registry for shared bean instances, implementing theSingletonBeanRegistry
.class
Support base class for singleton registries which need to handleFactoryBean
instances, integrated withDefaultSingletonBeanRegistry
's singleton management.class
Simple implementation of theBeanDefinitionRegistry
interface. -
Uses of AliasRegistry in org.springframework.context.annotation
Modifier and TypeClassDescriptionclass
Standalone application context, accepting component classes as input — in particular@Configuration
-annotated classes, but also plain@Component
types and JSR-330 compliant classes usingjakarta.inject
annotations. -
Uses of AliasRegistry in org.springframework.context.support
Modifier and TypeClassDescriptionclass
Generic ApplicationContext implementation that holds a single internalDefaultListableBeanFactory
instance and does not assume a specific bean definition format.class
AnApplicationContext
implementation that extendsGenericApplicationContext
and implementsGroovyObject
such that beans can be retrieved with the dot de-reference syntax instead of usingAbstractApplicationContext.getBean(java.lang.String)
.class
Convenient application context with built-in XML support.class
ApplicationContext
implementation which supports programmatic registration of beans and messages, rather than reading bean definitions from external configuration sources. -
Uses of AliasRegistry in org.springframework.core
-
Uses of AliasRegistry in org.springframework.web.context.support
Modifier and TypeClassDescriptionclass
Subclass ofGenericApplicationContext
, suitable for web environments.class
StaticWebApplicationContext
implementation for testing.