Package | Description |
---|---|
org.springframework.beans.factory.groovy |
Support package for Groovy-based bean definitions.
|
org.springframework.beans.factory.xml |
Contains an abstract XML-based
BeanFactory implementation,
including a standard "spring-beans" XSD. |
org.springframework.context.support |
Classes supporting the org.springframework.context package,
such as abstract base classes for ApplicationContext
implementations and a MessageSource implementation.
|
org.springframework.web.context.support |
Classes supporting the
org.springframework.web.context package,
such as WebApplicationContext implementations and various utility classes. |
Constructor and Description |
---|
GroovyBeanDefinitionReader(XmlBeanDefinitionReader xmlBeanDefinitionReader)
Create a new
GroovyBeanDefinitionReader based on the given
XmlBeanDefinitionReader , loading bean definitions into its
BeanDefinitionRegistry and delegating Groovy DSL loading to it. |
Modifier and Type | Method and Description |
---|---|
XmlBeanDefinitionReader |
XmlReaderContext.getReader()
Return the XML bean definition reader in use.
|
Constructor and Description |
---|
XmlReaderContext(Resource resource,
ProblemReporter problemReporter,
ReaderEventListener eventListener,
SourceExtractor sourceExtractor,
XmlBeanDefinitionReader reader,
NamespaceHandlerResolver namespaceHandlerResolver)
Construct a new
XmlReaderContext . |
Modifier and Type | Method and Description |
---|---|
XmlBeanDefinitionReader |
GenericXmlApplicationContext.getReader()
Exposes the underlying
XmlBeanDefinitionReader for additional
configuration facilities and loadBeanDefinition variations. |
Modifier and Type | Method and Description |
---|---|
protected void |
AbstractXmlApplicationContext.initBeanDefinitionReader(XmlBeanDefinitionReader reader)
Initialize the bean definition reader used for loading the bean
definitions of this context.
|
protected void |
AbstractXmlApplicationContext.loadBeanDefinitions(XmlBeanDefinitionReader reader)
Load the bean definitions with the given XmlBeanDefinitionReader.
|
Modifier and Type | Method and Description |
---|---|
protected void |
XmlWebApplicationContext.initBeanDefinitionReader(XmlBeanDefinitionReader beanDefinitionReader)
Initialize the bean definition reader used for loading the bean
definitions of this context.
|
protected void |
XmlWebApplicationContext.loadBeanDefinitions(XmlBeanDefinitionReader reader)
Load the bean definitions with the given XmlBeanDefinitionReader.
|