All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.springframework.context.support.AbstractXmlApplicationContext Maven / Gradle / Ivy

There is a newer version: 5.3.34
Show newest version
/*
 * Copyright 2002-2005 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;

/**
 * Convenient abstract superclass for ApplicationContext implementations,
 * drawing configuration from XML documents containing bean definitions
 * understood by an XmlBeanDefinitionReader.
 *
 * 

Subclasses just have to implement the getConfigLocations * method. Furthermore, they might override the getResourceByPath * hook to interpret relative paths in an environment-specific fashion, and/or * getResourcePatternResolver for extended pattern resolution. * * @author Rod Johnson * @author Juergen Hoeller * @see #getConfigLocations * @see #getResourceByPath * @see #getResourcePatternResolver * @see org.springframework.beans.factory.xml.XmlBeanDefinitionReader */ public abstract class AbstractXmlApplicationContext extends AbstractRefreshableApplicationContext { /** * Create a new AbstractXmlApplicationContext with no parent. */ public AbstractXmlApplicationContext() { } /** * Create a new AbstractXmlApplicationContext with the given parent context. * @param parent the parent context */ public AbstractXmlApplicationContext(ApplicationContext parent) { super(parent); } /** * Loads the bean definitions via an XmlBeanDefinitionReader. * @see org.springframework.beans.factory.xml.XmlBeanDefinitionReader * @see #initBeanDefinitionReader * @see #loadBeanDefinitions */ protected void loadBeanDefinitions(DefaultListableBeanFactory beanFactory) throws IOException { XmlBeanDefinitionReader beanDefinitionReader = new XmlBeanDefinitionReader(beanFactory); beanDefinitionReader.setResourceLoader(this); beanDefinitionReader.setEntityResolver(new ResourceEntityResolver(this)); 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. * @param beanDefinitionReader the bean definition reader used by this context * @see org.springframework.beans.factory.xml.XmlBeanDefinitionReader#setValidating * @see org.springframework.beans.factory.xml.XmlBeanDefinitionReader#setParserClass */ protected void initBeanDefinitionReader(XmlBeanDefinitionReader beanDefinitionReader) { } /** * Load the bean definitions with the given XmlBeanDefinitionReader. *

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

Delegates to a ResourcePatternResolver for resolving location patterns * into Resource instances. * @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 { String[] configLocations = getConfigLocations(); if (configLocations != null) { for (int i = 0; i < configLocations.length; i++) { reader.loadBeanDefinitions(getResources(configLocations[i])); } } } /** * Return an array of resource locations, referring to the XML bean * definition files that this context should be built with. *

Can also include location patterns, which will get resolved * via a ResourcePatternResolver. * @return an array of resource locations, or null if none * @see #getResources * @see #getResourcePatternResolver */ protected abstract String[] getConfigLocations(); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy