/*
 * Copyright 2002-2017 the original author or authors.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package org.springframework.context.support;

import java.io.IOException;

import org.springframework.beans.BeansException;
import org.springframework.beans.factory.support.DefaultListableBeanFactory;
import org.springframework.beans.factory.xml.ResourceEntityResolver;
import org.springframework.beans.factory.xml.XmlBeanDefinitionReader;
import org.springframework.context.ApplicationContext;
import org.springframework.core.io.Resource;
import org.springframework.lang.Nullable;

Convenient base class for ApplicationContext implementations, drawing configuration from XML documents containing bean definitions understood by an XmlBeanDefinitionReader.

Subclasses just have to implement the getConfigResources and/or the AbstractRefreshableConfigApplicationContext.getConfigLocations method. Furthermore, they might override the DefaultResourceLoader.getResourceByPath hook to interpret relative paths in an environment-specific fashion, and/or AbstractApplicationContext.getResourcePatternResolver for extended pattern resolution.

Author:Rod Johnson, Juergen Hoeller
See Also:
/** * Convenient base class for {@link org.springframework.context.ApplicationContext} * implementations, drawing configuration from XML documents containing bean definitions * understood by an {@link org.springframework.beans.factory.xml.XmlBeanDefinitionReader}. * * <p>Subclasses just have to implement the {@link #getConfigResources} and/or * the {@link #getConfigLocations} method. Furthermore, they might override * the {@link #getResourceByPath} hook to interpret relative paths in an * environment-specific fashion, and/or {@link #getResourcePatternResolver} * for extended pattern resolution. * * @author Rod Johnson * @author Juergen Hoeller * @see #getConfigResources * @see #getConfigLocations * @see org.springframework.beans.factory.xml.XmlBeanDefinitionReader */
public abstract class AbstractXmlApplicationContext extends AbstractRefreshableConfigApplicationContext { private boolean validating = true;
Create a new AbstractXmlApplicationContext with no parent.
/** * Create a new AbstractXmlApplicationContext with no parent. */
public AbstractXmlApplicationContext() { }
Create a new AbstractXmlApplicationContext with the given parent context.
Params:
  • parent – the parent context
/** * Create a new AbstractXmlApplicationContext with the given parent context. * @param parent the parent context */
public AbstractXmlApplicationContext(@Nullable ApplicationContext parent) { super(parent); }
Set whether to use XML validation. Default is true.
/** * Set whether to use XML validation. Default is {@code true}. */
public void setValidating(boolean validating) { this.validating = validating; }
Loads the bean definitions via an XmlBeanDefinitionReader.
See Also:
/** * Loads the bean definitions via an XmlBeanDefinitionReader. * @see org.springframework.beans.factory.xml.XmlBeanDefinitionReader * @see #initBeanDefinitionReader * @see #loadBeanDefinitions */
@Override protected void loadBeanDefinitions(DefaultListableBeanFactory beanFactory) throws BeansException, IOException { // Create a new XmlBeanDefinitionReader for the given BeanFactory. XmlBeanDefinitionReader beanDefinitionReader = new XmlBeanDefinitionReader(beanFactory); // Configure the bean definition reader with this context's // resource loading environment. beanDefinitionReader.setEnvironment(this.getEnvironment()); beanDefinitionReader.setResourceLoader(this); beanDefinitionReader.setEntityResolver(new ResourceEntityResolver(this)); // Allow a subclass to provide custom initialization of the reader, // then proceed with actually loading the bean definitions. initBeanDefinitionReader(beanDefinitionReader); loadBeanDefinitions(beanDefinitionReader); }
Initialize the bean definition reader used for loading the bean definitions of this context. Default implementation is empty.

Can be overridden in subclasses, e.g. for turning off XML validation or using a different XmlBeanDefinitionParser implementation.

Params:
  • reader – the bean definition reader used by this context
See Also:
/** * Initialize the bean definition reader used for loading the bean * definitions of this context. Default implementation is empty. * <p>Can be overridden in subclasses, e.g. for turning off XML validation * or using a different XmlBeanDefinitionParser implementation. * @param reader the bean definition reader used by this context * @see org.springframework.beans.factory.xml.XmlBeanDefinitionReader#setDocumentReaderClass */
protected void initBeanDefinitionReader(XmlBeanDefinitionReader reader) { reader.setValidating(this.validating); }
Load the bean definitions with the given XmlBeanDefinitionReader.

The lifecycle of the bean factory is handled by the AbstractRefreshableApplicationContext.refreshBeanFactory method; hence this method is just supposed to load and/or register bean definitions.

Params:
  • reader – the XmlBeanDefinitionReader to use
Throws:
See Also:
/** * Load the bean definitions with the given XmlBeanDefinitionReader. * <p>The lifecycle of the bean factory is handled by the {@link #refreshBeanFactory} * method; hence this method is just supposed to load and/or register bean definitions. * @param reader the XmlBeanDefinitionReader to use * @throws BeansException in case of bean registration errors * @throws IOException if the required XML document isn't found * @see #refreshBeanFactory * @see #getConfigLocations * @see #getResources * @see #getResourcePatternResolver */
protected void loadBeanDefinitions(XmlBeanDefinitionReader reader) throws BeansException, IOException { Resource[] configResources = getConfigResources(); if (configResources != null) { reader.loadBeanDefinitions(configResources); } String[] configLocations = getConfigLocations(); if (configLocations != null) { reader.loadBeanDefinitions(configLocations); } }
Return an array of Resource objects, referring to the XML bean definition files that this context should be built with.

The default implementation returns null. Subclasses can override this to provide pre-built Resource objects rather than location Strings.

See Also:
Returns:an array of Resource objects, or null if none
/** * Return an array of Resource objects, referring to the XML bean definition * files that this context should be built with. * <p>The default implementation returns {@code null}. Subclasses can override * this to provide pre-built Resource objects rather than location Strings. * @return an array of Resource objects, or {@code null} if none * @see #getConfigLocations() */
@Nullable protected Resource[] getConfigResources() { return null; } }