| 
 | ||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.springframework.beans.factory.xml.DefaultBeanDefinitionDocumentReader
public class DefaultBeanDefinitionDocumentReader
Default implementation of the BeanDefinitionDocumentReader interface.
 Reads bean definitions according to the "spring-beans" DTD and XSD format
 (Spring's default XML bean definition format).
 
The structure, elements and attribute names of the required XML document
 are hard-coded in this class. (Of course a transform could be run if necessary
 to produce this format). <beans> doesn't need to be the root
 element of the XML document: This class will parse all bean definition elements
 in the XML file, not regarding the actual root element.
| Field Summary | |
|---|---|
| static String | ALIAS_ATTRIBUTE | 
| static String | ALIAS_ELEMENT | 
| static String | BEAN_ELEMENT | 
| static String | IMPORT_ELEMENT | 
| protected  Log | logger | 
| static String | NAME_ATTRIBUTE | 
| static String | RESOURCE_ATTRIBUTE | 
| Constructor Summary | |
|---|---|
| DefaultBeanDefinitionDocumentReader() | |
| Method Summary | |
|---|---|
| protected  BeanDefinitionParserDelegate | createHelper(XmlReaderContext readerContext,
             Element root) | 
| protected  Object | extractSource(Element ele)Invoke the SourceExtractorto pull the
 source metadata from the suppliedElement. | 
| protected  XmlReaderContext | getReaderContext()Return the descriptor for the XML resource that this parser works on. | 
| protected  void | importBeanDefinitionResource(Element ele)Parse an "import" element and load the bean definitions from the given resource into the bean factory. | 
| protected  void | parseBeanDefinitions(Element root,
                     BeanDefinitionParserDelegate delegate)Parse the elements at the root level in the document: "import", "alias", "bean". | 
| protected  void | postProcessXml(Element root)Allow the XML to be extensible by processing any custom element types last, after we finished processing the bean definitions. | 
| protected  void | preProcessXml(Element root)Allow the XML to be extensible by processing any custom element types first, before we start to process the bean definitions. | 
| protected  void | processAliasRegistration(Element ele)Process the given alias element, registering the alias with the registry. | 
| protected  void | processBeanDefinition(Element ele,
                      BeanDefinitionParserDelegate delegate)Process the given bean element, parsing the bean definition and registering it with the registry. | 
|  void | registerBeanDefinitions(Document doc,
                        XmlReaderContext readerContext)Parses bean definitions according to the "spring-beans" DTD. | 
| Methods inherited from class java.lang.Object | 
|---|
| clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait | 
| Field Detail | 
|---|
public static final String BEAN_ELEMENT
public static final String ALIAS_ELEMENT
public static final String NAME_ATTRIBUTE
public static final String ALIAS_ATTRIBUTE
public static final String IMPORT_ELEMENT
public static final String RESOURCE_ATTRIBUTE
protected final Log logger
| Constructor Detail | 
|---|
public DefaultBeanDefinitionDocumentReader()
| Method Detail | 
|---|
public void registerBeanDefinitions(Document doc,
                                    XmlReaderContext readerContext)
Opens a DOM Document; then initializes the default settings
 specified at <beans> level; then parses
 the contained bean definitions.
registerBeanDefinitions in interface BeanDefinitionDocumentReaderdoc - the DOM documentreaderContext - the current context of the reader. Includes the resource being parsed
protected BeanDefinitionParserDelegate createHelper(XmlReaderContext readerContext,
                                                    Element root)
protected final XmlReaderContext getReaderContext()
protected Object extractSource(Element ele)
SourceExtractor to pull the
 source metadata from the supplied Element.
protected void parseBeanDefinitions(Element root,
                                    BeanDefinitionParserDelegate delegate)
root - the DOM root element of the documentprotected void importBeanDefinitionResource(Element ele)
protected void processAliasRegistration(Element ele)
protected void processBeanDefinition(Element ele,
                                     BeanDefinitionParserDelegate delegate)
protected void preProcessXml(Element root)
The default implementation is empty. Subclasses can override this method to convert custom elements into standard Spring bean definitions, for example. Implementors have access to the parser's bean definition reader and the underlying XML resource, through the corresponding accessors.
getReaderContext()protected void postProcessXml(Element root)
The default implementation is empty. Subclasses can override this method to convert custom elements into standard Spring bean definitions, for example. Implementors have access to the parser's bean definition reader and the underlying XML resource, through the corresponding accessors.
getReaderContext()| 
 | ||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||