Browse Source
git-svn-id: https://src.springframework.org/svn/spring-framework/trunk@2367 50f2f4bb-b051-0410-bef5-90022cba6387pull/1/head
3 changed files with 124 additions and 9 deletions
@ -0,0 +1,96 @@
@@ -0,0 +1,96 @@
|
||||
/* |
||||
* Copyright 2002-2009 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 org.springframework.beans.factory.xml.XmlBeanDefinitionReader; |
||||
import org.springframework.core.io.Resource; |
||||
|
||||
/** |
||||
* Convenient application context with built-in XML support. |
||||
* This is a flexible alternative to {@link ClassPathXmlApplicationContext} |
||||
* and {@link FileSystemXmlApplicationContext}, to be configured via setters, |
||||
* with an eventual {@link #refresh()} call activating the context. |
||||
* |
||||
* <p>In case of multiple configuration files, bean definitions in later files |
||||
* will override those defined in earlier files. This can be leveraged to |
||||
* deliberately override certain bean definitions via an extra configuration file. |
||||
* |
||||
* @author Juergen Hoeller |
||||
* @since 3.0 |
||||
* @see #load |
||||
* @see XmlBeanDefinitionReader |
||||
* @see org.springframework.context.annotation.AnnotationConfigApplicationContext |
||||
*/ |
||||
public class GenericXmlApplicationContext extends GenericApplicationContext { |
||||
|
||||
private final XmlBeanDefinitionReader reader = new XmlBeanDefinitionReader(this); |
||||
|
||||
|
||||
/** |
||||
* Create a new GenericXmlApplicationContext that needs to be populated |
||||
* through {@link #load} calls and then manually {@link #refresh refreshed}. |
||||
*/ |
||||
public GenericXmlApplicationContext() { |
||||
} |
||||
|
||||
/** |
||||
* Create a new GenericXmlApplicationContext, loading bean definitions |
||||
* from the given resources and automatically refreshing the context. |
||||
* @param resources the resources to load from |
||||
*/ |
||||
public GenericXmlApplicationContext(Resource... resources) { |
||||
load(resources); |
||||
refresh(); |
||||
} |
||||
|
||||
/** |
||||
* Create a new GenericXmlApplicationContext, loading bean definitions |
||||
* from the given resource locations and automatically refreshing the context. |
||||
* @param resourceLocations the resources to load from |
||||
*/ |
||||
public GenericXmlApplicationContext(String... resourceLocations) { |
||||
load(resourceLocations); |
||||
refresh(); |
||||
} |
||||
|
||||
|
||||
/** |
||||
* Set whether to use XML validation. |
||||
*/ |
||||
public void setValidating(boolean validating) { |
||||
this.reader.setValidationMode(validating ? |
||||
XmlBeanDefinitionReader.VALIDATION_AUTO : XmlBeanDefinitionReader.VALIDATION_NONE); |
||||
} |
||||
|
||||
|
||||
/** |
||||
* Load bean definitions from the given XML resources. |
||||
* @param resources one or more resources to load from |
||||
*/ |
||||
public void load(Resource... resources) { |
||||
this.reader.loadBeanDefinitions(resources); |
||||
} |
||||
|
||||
/** |
||||
* Load bean definitions from the given XML resources. |
||||
* @param resourceLocations one or more resource locations to load from |
||||
*/ |
||||
public void load(String... resourceLocations) { |
||||
this.reader.loadBeanDefinitions(resourceLocations); |
||||
} |
||||
|
||||
} |
||||
Loading…
Reference in new issue