| BeanDefinitionDecorator | Interface used by the org.springframework.beans.factory.xml.DefaultBeanDefinitionDocumentReader
to handle custom, nested (directly under a <bean>) tags. |
code | html |
| BeanDefinitionDocumentReader | SPI for parsing an XML document that contains Spring bean definitions. | code | html |
| BeanDefinitionParser | Interface used by the
org.springframework.beans.factory.xml.DefaultBeanDefinitionDocumentReader to
handle custom, top-level (directly under <beans>) tags. |
code | html |
| DocumentLoader | Strategy interface for loading an XML Document . | code | html |
| NamespaceHandler | Base interface used by the DefaultBeanDefinitionDocumentReader for handling custom namespaces in a Spring XML configuration file. | code | html |
| NamespaceHandlerResolver | Used by the org.springframework.beans.factory.xml.DefaultBeanDefinitionDocumentReader to locate a NamespaceHandler implementation for a particular namespace URI. | code | html |
| XmlBeanDefinitionParser | Strategy interface for parsing XML bean definitions. | code | html |
| AbstractBeanDefinitionParser | Abstract BeanDefinitionParser implementation providing a number of convenience methods and a template method that subclasses must override to provide the actual parsing logic. | code | html |
| AbstractSimpleBeanDefinitionParser | Convenient base class for when there exists a one-to-one mapping between attribute names on the element that is to be parsed and the property names on the Class being configured. | code | html |
| AbstractSingleBeanDefinitionParser | Base class for those BeanDefinitionParser implementations that
need to parse and define just a single BeanDefinition. |
code | html |
| NamespaceHandlerSupport | Support class for implementing custom NamespaceHandlers . | code | html |
| BeanDefinitionParserDelegate | Stateful delegate class used to parse XML bean definitions. | code | html |
| BeansDtdResolver | EntityResolver implementation for the Spring beans DTD, to load the DTD from the Spring class path (or JAR file). | code | html |
| DefaultBeanDefinitionDocumentReader | Default implementation of the BeanDefinitionDocumentReader interface. | code | html |
| DefaultDocumentLoader | Spring's default DocumentLoader implementation. | code | html |
| DefaultNamespaceHandlerResolver | Default implementation of the NamespaceHandlerResolver interface. | code | html |
| DefaultXmlBeanDefinitionParser | Default implementation of the XmlBeanDefinitionParser interface. | code | html |
| DelegatingEntityResolver | EntityResolver implementation that delegates to a BeansDtdResolver and a PluggableSchemaResolver for DTDs and XML schemas, respectively. | code | html |
| DocumentDefaultsDefinition | Simple JavaBean that holds the defaults specified at the %lt;beans>
level in a standard Spring XML bean definition document:
default-lazy-init, default-autowire, etc |
code | html |
| ParserContext | Context that gets passed along a bean definition parsing process, encapsulating all relevant configuration as well as state. | code | html |
| PluggableSchemaResolver | EntityResolver implementation that attempts to resolve schema URLs into local classpath resources using a set of mappings files. | code | html |
| ResourceEntityResolver | EntityResolver implementation that tries to resolve entity references through a org.springframework.core.io.ResourceLoader (usually, relative to the resource base of an ApplicationContext), if applicable. | code | html |
| SimplePropertyNamespaceHandler | Simple NamespaceHandler implementation that maps custom attributes
directly through to bean properties. |
code | html |
| UtilNamespaceHandler | NamespaceHandler for the util namespace. |
code | html |
| UtilNamespaceHandler.ConstantBeanDefinitionParser | code | html | |
| UtilNamespaceHandler.ListBeanDefinitionParser | code | html | |
| UtilNamespaceHandler.MapBeanDefinitionParser | code | html | |
| UtilNamespaceHandler.PropertiesBeanDefinitionParser | code | html | |
| UtilNamespaceHandler.PropertyPathBeanDefinitionParser | code | html | |
| UtilNamespaceHandler.SetBeanDefinitionParser | code | html | |
| XmlBeanDefinitionReader | Bean definition reader for XML bean definitions. | code | html |
| XmlBeanDefinitionStoreException | XML-specific BeanDefinitionStoreException subclass that wraps a org.xml.sax.SAXException , typically a org.xml.sax.SAXParseException which contains information about the error location. | code | html |
| XmlBeanFactory | Convenience extension of DefaultListableBeanFactory that reads bean definitions from an XML document. | code | html |
| XmlReaderContext | Extension of org.springframework.beans.factory.parsing.ReaderContext , specific to use with an XmlBeanDefinitionReader . | code | html |
BeanFactory implementation,
including a standard "spring-beans" DTD.