Java Code Examples for org.springframework.beans.factory.xml.XmlBeanDefinitionReader#getRegistry()

The following examples show how to use org.springframework.beans.factory.xml.XmlBeanDefinitionReader#getRegistry() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: GroovyBeanDefinitionReader.java    From spring-analysis-note with MIT License 2 votes vote down vote up
/**
 * Create a new {@code GroovyBeanDefinitionReader} based on the given
 * {@link XmlBeanDefinitionReader}, loading bean definitions into its
 * {@code BeanDefinitionRegistry} and delegating Groovy DSL loading to it.
 * <p>The supplied {@code XmlBeanDefinitionReader} should typically
 * be pre-configured with XML validation disabled.
 * @param xmlBeanDefinitionReader the {@code XmlBeanDefinitionReader} to
 * derive the registry from and to delegate Groovy DSL loading to
 */
public GroovyBeanDefinitionReader(XmlBeanDefinitionReader xmlBeanDefinitionReader) {
	super(xmlBeanDefinitionReader.getRegistry());
	this.standardXmlBeanDefinitionReader = new XmlBeanDefinitionReader(xmlBeanDefinitionReader.getRegistry());
	this.groovyDslXmlBeanDefinitionReader = xmlBeanDefinitionReader;
}
 
Example 2
Source File: GroovyBeanDefinitionReader.java    From java-technology-stack with MIT License 2 votes vote down vote up
/**
 * Create a new {@code GroovyBeanDefinitionReader} based on the given
 * {@link XmlBeanDefinitionReader}, loading bean definitions into its
 * {@code BeanDefinitionRegistry} and delegating Groovy DSL loading to it.
 * <p>The supplied {@code XmlBeanDefinitionReader} should typically
 * be pre-configured with XML validation disabled.
 * @param xmlBeanDefinitionReader the {@code XmlBeanDefinitionReader} to
 * derive the registry from and to delegate Groovy DSL loading to
 */
public GroovyBeanDefinitionReader(XmlBeanDefinitionReader xmlBeanDefinitionReader) {
	super(xmlBeanDefinitionReader.getRegistry());
	this.standardXmlBeanDefinitionReader = new XmlBeanDefinitionReader(xmlBeanDefinitionReader.getRegistry());
	this.groovyDslXmlBeanDefinitionReader = xmlBeanDefinitionReader;
}
 
Example 3
Source File: GroovyBeanDefinitionReader.java    From lams with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Create a new {@code GroovyBeanDefinitionReader} based on the given
 * {@link XmlBeanDefinitionReader}, loading bean definitions into its
 * {@code BeanDefinitionRegistry} and delegating Groovy DSL loading to it.
 * <p>The supplied {@code XmlBeanDefinitionReader} should typically
 * be pre-configured with XML validation disabled.
 * @param xmlBeanDefinitionReader the {@code XmlBeanDefinitionReader} to
 * derive the registry from and to delegate Groovy DSL loading to
 */
public GroovyBeanDefinitionReader(XmlBeanDefinitionReader xmlBeanDefinitionReader) {
	super(xmlBeanDefinitionReader.getRegistry());
	this.standardXmlBeanDefinitionReader = new XmlBeanDefinitionReader(xmlBeanDefinitionReader.getRegistry());
	this.groovyDslXmlBeanDefinitionReader = xmlBeanDefinitionReader;
}
 
Example 4
Source File: GroovyBeanDefinitionReader.java    From blog_demos with Apache License 2.0 2 votes vote down vote up
/**
 * Create new GroovyBeanDefinitionReader based on the given XmlBeanDefinitionReader,
 * using the same registry and delegating XML loading to it.
 * @param xmlBeanDefinitionReader the XmlBeanDefinitionReader to derive the registry
 * from and to delegate XML loading to
 */
public GroovyBeanDefinitionReader(XmlBeanDefinitionReader xmlBeanDefinitionReader) {
	super(xmlBeanDefinitionReader.getRegistry());
	this.xmlBeanDefinitionReader = xmlBeanDefinitionReader;
}
 
Example 5
Source File: GroovyBeanDefinitionReader.java    From spring4-understanding with Apache License 2.0 2 votes vote down vote up
/**
 * Create a new {@code GroovyBeanDefinitionReader} based on the given
 * {@link XmlBeanDefinitionReader}, loading bean definitions into its
 * {@code BeanDefinitionRegistry} and delegating Groovy DSL loading to it.
 * <p>The supplied {@code XmlBeanDefinitionReader} should typically
 * be pre-configured with XML validation disabled.
 * @param xmlBeanDefinitionReader the {@code XmlBeanDefinitionReader} to
 * derive the registry from and to delegate Groovy DSL loading to
 */
public GroovyBeanDefinitionReader(XmlBeanDefinitionReader xmlBeanDefinitionReader) {
	super(xmlBeanDefinitionReader.getRegistry());
	this.standardXmlBeanDefinitionReader = new XmlBeanDefinitionReader(xmlBeanDefinitionReader.getRegistry());
	this.groovyDslXmlBeanDefinitionReader = xmlBeanDefinitionReader;
}