Class XmlBeanDefinitionReader

java.lang.Object
org.springframework.beans.factory.support.AbstractBeanDefinitionReader
org.springframework.beans.factory.xml.XmlBeanDefinitionReader
All Implemented Interfaces:
BeanDefinitionReader, org.springframework.core.env.EnvironmentCapable

public class XmlBeanDefinitionReader extends AbstractBeanDefinitionReader
Bean definition reader for XML bean definitions. Delegates the actual XML document reading to an implementation of the BeanDefinitionDocumentReader interface.

Typically applied to a DefaultListableBeanFactory or a

invalid reference
org.springframework.context.support.GenericApplicationContext
.

This class loads a DOM document and applies the BeanDefinitionDocumentReader to it. The document reader will register each bean definition with the given bean factory, talking to the latter's implementation of the BeanDefinitionRegistry interface.

Since:
26.11.2003
Author:
Juergen Hoeller, Rob Harrop, Chris Beams, Sam Brannen
See Also:
  • Field Details

    • VALIDATION_NONE

      public static final int VALIDATION_NONE
      Indicates that the validation should be disabled.
      See Also:
    • VALIDATION_AUTO

      public static final int VALIDATION_AUTO
      Indicates that the validation mode should be detected automatically.
      See Also:
    • VALIDATION_DTD

      public static final int VALIDATION_DTD
      Indicates that DTD validation should be used.
      See Also:
    • VALIDATION_XSD

      public static final int VALIDATION_XSD
      Indicates that XSD validation should be used.
      See Also:
  • Constructor Details

    • XmlBeanDefinitionReader

      public XmlBeanDefinitionReader(BeanDefinitionRegistry registry)
      Create new XmlBeanDefinitionReader for the given bean factory.
      Parameters:
      registry - the BeanFactory to load bean definitions into, in the form of a BeanDefinitionRegistry
  • Method Details

    • setValidating

      public void setValidating(boolean validating)
      Set whether to use XML validation. Default is true.

      This method switches namespace awareness on if validation is turned off, in order to still process schema namespaces properly in such a scenario.

      See Also:
    • setValidationModeName

      public void setValidationModeName(String validationModeName)
      Set the validation mode to use by name. Defaults to VALIDATION_AUTO.
      See Also:
    • setValidationMode

      public void setValidationMode(int validationMode)
      Set the validation mode to use. Defaults to VALIDATION_AUTO.

      Note that this only activates or deactivates validation itself. If you are switching validation off for schema files, you might need to activate schema namespace support explicitly: see setNamespaceAware(boolean).

    • getValidationMode

      public int getValidationMode()
      Return the validation mode to use.
    • setNamespaceAware

      public void setNamespaceAware(boolean namespaceAware)
      Set whether the XML parser should be XML namespace aware. Default is "false".

      This is typically not needed when schema validation is active. However, without validation, this has to be switched to "true" in order to properly process schema namespaces.

    • isNamespaceAware

      public boolean isNamespaceAware()
      Return whether the XML parser should be XML namespace aware.
    • setProblemReporter

      public void setProblemReporter(@Nullable ProblemReporter problemReporter)
      Specify which ProblemReporter to use.

      The default implementation is FailFastProblemReporter which exhibits fail fast behaviour. External tools can provide an alternative implementation that collates errors and warnings for display in the tool UI.

    • setEventListener

      public void setEventListener(@Nullable ReaderEventListener eventListener)
      Specify which ReaderEventListener to use.

      The default implementation is EmptyReaderEventListener which discards every event notification. External tools can provide an alternative implementation to monitor the components being registered in the BeanFactory.

    • setSourceExtractor

      public void setSourceExtractor(@Nullable SourceExtractor sourceExtractor)
      Specify the SourceExtractor to use.

      The default implementation is NullSourceExtractor which simply returns null as the source object. This means that - during normal runtime execution - no additional source metadata is attached to the bean configuration metadata.

    • setNamespaceHandlerResolver

      public void setNamespaceHandlerResolver(@Nullable NamespaceHandlerResolver namespaceHandlerResolver)
      Specify the NamespaceHandlerResolver to use.

      If none is specified, a default instance will be created through createDefaultNamespaceHandlerResolver().

    • setDocumentLoader

      public void setDocumentLoader(@Nullable DocumentLoader documentLoader)
      Specify the DocumentLoader to use.

      The default implementation is DefaultDocumentLoader which loads Document instances using JAXP.

    • setEntityResolver

      public void setEntityResolver(@Nullable EntityResolver entityResolver)
      Set a SAX entity resolver to be used for parsing.

      By default, ResourceEntityResolver will be used. Can be overridden for custom entity resolution, for example relative to some specific base path.

    • getEntityResolver

      protected EntityResolver getEntityResolver()
      Return the EntityResolver to use, building a default resolver if none specified.
    • setErrorHandler

      public void setErrorHandler(ErrorHandler errorHandler)
      Set an implementation of the org.xml.sax.ErrorHandler interface for custom handling of XML parsing errors and warnings.

      If not set, a default SimpleSaxErrorHandler is used that simply logs warnings using the logger instance of the view class, and rethrows errors to discontinue the XML transformation.

      See Also:
      • SimpleSaxErrorHandler
    • setDocumentReaderClass

      public void setDocumentReaderClass(Class<? extends BeanDefinitionDocumentReader> documentReaderClass)
      Specify the BeanDefinitionDocumentReader implementation to use, responsible for the actual reading of the XML bean definition document.

      The default is DefaultBeanDefinitionDocumentReader.

      Parameters:
      documentReaderClass - the desired BeanDefinitionDocumentReader implementation class
    • loadBeanDefinitions

      public int loadBeanDefinitions(org.springframework.core.io.Resource resource) throws BeanDefinitionStoreException
      Load bean definitions from the specified XML file.
      Parameters:
      resource - the resource descriptor for the XML file
      Returns:
      the number of bean definitions found
      Throws:
      BeanDefinitionStoreException - in case of loading or parsing errors
    • loadBeanDefinitions

      public int loadBeanDefinitions(org.springframework.core.io.support.EncodedResource encodedResource) throws BeanDefinitionStoreException
      Load bean definitions from the specified XML file.
      Parameters:
      encodedResource - the resource descriptor for the XML file, allowing to specify an encoding to use for parsing the file
      Returns:
      the number of bean definitions found
      Throws:
      BeanDefinitionStoreException - in case of loading or parsing errors
    • loadBeanDefinitions

      public int loadBeanDefinitions(InputSource inputSource) throws BeanDefinitionStoreException
      Load bean definitions from the specified XML file.
      Parameters:
      inputSource - the SAX InputSource to read from
      Returns:
      the number of bean definitions found
      Throws:
      BeanDefinitionStoreException - in case of loading or parsing errors
    • loadBeanDefinitions

      public int loadBeanDefinitions(InputSource inputSource, @Nullable String resourceDescription) throws BeanDefinitionStoreException
      Load bean definitions from the specified XML file.
      Parameters:
      inputSource - the SAX InputSource to read from
      resourceDescription - a description of the resource (can be null or empty)
      Returns:
      the number of bean definitions found
      Throws:
      BeanDefinitionStoreException - in case of loading or parsing errors
    • doLoadBeanDefinitions

      protected int doLoadBeanDefinitions(InputSource inputSource, org.springframework.core.io.Resource resource) throws BeanDefinitionStoreException
      Actually load bean definitions from the specified XML file.
      Parameters:
      inputSource - the SAX InputSource to read from
      resource - the resource descriptor for the XML file
      Returns:
      the number of bean definitions found
      Throws:
      BeanDefinitionStoreException - in case of loading or parsing errors
      See Also:
    • doLoadDocument

      protected Document doLoadDocument(InputSource inputSource, org.springframework.core.io.Resource resource) throws Exception
      Actually load the specified document using the configured DocumentLoader.
      Parameters:
      inputSource - the SAX InputSource to read from
      resource - the resource descriptor for the XML file
      Returns:
      the DOM Document
      Throws:
      Exception - when thrown from the DocumentLoader
      See Also:
    • getValidationModeForResource

      protected int getValidationModeForResource(org.springframework.core.io.Resource resource)
      Determine the validation mode for the specified Resource. If no explicit validation mode has been configured, then the validation mode gets detected from the given resource.

      Override this method if you would like full control over the validation mode, even when something other than VALIDATION_AUTO was set.

      See Also:
    • detectValidationMode

      protected int detectValidationMode(org.springframework.core.io.Resource resource)
      Detect which kind of validation to perform on the XML file identified by the supplied Resource. If the file has a DOCTYPE definition then DTD validation is used otherwise XSD validation is assumed.

      Override this method if you would like to customize resolution of the VALIDATION_AUTO mode.

    • registerBeanDefinitions

      public int registerBeanDefinitions(Document doc, org.springframework.core.io.Resource resource) throws BeanDefinitionStoreException
      Register the bean definitions contained in the given DOM document. Called by loadBeanDefinitions.

      Creates a new instance of the parser class and invokes registerBeanDefinitions on it.

      Parameters:
      doc - the DOM document
      resource - the resource descriptor (for context information)
      Returns:
      the number of bean definitions found
      Throws:
      BeanDefinitionStoreException - in case of parsing errors
      See Also:
    • createBeanDefinitionDocumentReader

      protected BeanDefinitionDocumentReader createBeanDefinitionDocumentReader()
      Create the BeanDefinitionDocumentReader to use for actually reading bean definitions from an XML document.

      The default implementation instantiates the specified "documentReaderClass".

      See Also:
    • createReaderContext

      public XmlReaderContext createReaderContext(org.springframework.core.io.Resource resource)
      Create the XmlReaderContext to pass over to the document reader.
    • getNamespaceHandlerResolver

      public NamespaceHandlerResolver getNamespaceHandlerResolver()
      Lazily create a default NamespaceHandlerResolver, if not set before.
      See Also:
    • createDefaultNamespaceHandlerResolver

      protected NamespaceHandlerResolver createDefaultNamespaceHandlerResolver()
      Create the default implementation of NamespaceHandlerResolver used if none is specified.

      The default implementation returns an instance of DefaultNamespaceHandlerResolver.

      See Also: