Class GroovyBeanDefinitionReader
- java.lang.Object
- org.springframework.beans.factory.support.AbstractBeanDefinitionReader
- org.springframework.beans.factory.groovy.GroovyBeanDefinitionReader
- All Implemented Interfaces:
groovy.lang.GroovyObject,BeanDefinitionReader,EnvironmentCapable
public class GroovyBeanDefinitionReader extends AbstractBeanDefinitionReader implements groovy.lang.GroovyObject
A Groovy-based reader for Spring bean definitions: like a Groovy builder, but more of a DSL for Spring configuration.This bean definition reader also understands XML bean definition files, allowing for seamless mixing and matching with Groovy bean definition files.
Typically applied to a
DefaultListableBeanFactoryor aGenericApplicationContext, but can be used against anyBeanDefinitionRegistryimplementation.Example Syntax
import org.hibernate.SessionFactory import org.apache.commons.dbcp.BasicDataSource def reader = new GroovyBeanDefinitionReader(myApplicationContext) reader.beans { dataSource(BasicDataSource) { // <--- invokeMethod driverClassName = "org.hsqldb.jdbcDriver" url = "jdbc:hsqldb:mem:grailsDB" username = "sa" // <-- setProperty password = "" settings = [mynew:"setting"] } sessionFactory(SessionFactory) { dataSource = dataSource // <-- getProperty for retrieving references } myService(MyService) { nestedBean = { AnotherBean bean -> // <-- setProperty with closure for nested bean dataSource = dataSource } } }You can also load resources containing beans defined in a Groovy script using either the
AbstractBeanDefinitionReader.loadBeanDefinitions(Resource...)orAbstractBeanDefinitionReader.loadBeanDefinitions(String...)method, with a script looking similar to the following.import org.hibernate.SessionFactory import org.apache.commons.dbcp.BasicDataSource beans { dataSource(BasicDataSource) { driverClassName = "org.hsqldb.jdbcDriver" url = "jdbc:hsqldb:mem:grailsDB" username = "sa" password = "" settings = [mynew:"setting"] } sessionFactory(SessionFactory) { dataSource = dataSource } myService(MyService) { nestedBean = { AnotherBean bean -> dataSource = dataSource } } }- Since:
- 4.0
- Author:
- Jeff Brown, Graeme Rocher, Juergen Hoeller, Sam Brannen
- See Also:
BeanDefinitionRegistry,DefaultListableBeanFactory,GenericApplicationContext,GenericGroovyApplicationContext
Field Summary
Fields inherited from class org.springframework.beans.factory.support.AbstractBeanDefinitionReader
logger
Constructor Summary
Constructors Constructor Description GroovyBeanDefinitionReader(BeanDefinitionRegistry registry)Create a newGroovyBeanDefinitionReaderfor the givenBeanDefinitionRegistry.GroovyBeanDefinitionReader(XmlBeanDefinitionReader xmlBeanDefinitionReader)Create a newGroovyBeanDefinitionReaderbased on the givenXmlBeanDefinitionReader, loading bean definitions into itsBeanDefinitionRegistryand delegating Groovy DSL loading to it.
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected voidapplyPropertyToBeanDefinition(String name, Object value)GenericBeanDefinitionbean(Class<?> type)Define an inner bean definition.AbstractBeanDefinitionbean(Class<?> type, Object... args)Define an inner bean definition.GroovyBeanDefinitionReaderbeans(groovy.lang.Closure closure)Defines a set of beans for the given block or closure.groovy.lang.BindinggetBinding()Return a specified binding for Groovy variables, if any.groovy.lang.MetaClassgetMetaClass()ObjectgetProperty(String name)This method overrides property retrieval in the scope of theGroovyBeanDefinitionReader.voidimportBeans(String resourcePattern)Import Spring bean definitions from either XML or Groovy sources into the current bean builder instance.protected GroovyBeanDefinitionReaderinvokeBeanDefiningClosure(groovy.lang.Closure callable)When a method argument is only a closure it is a set of bean definitions.ObjectinvokeMethod(String name, Object arg)This method overrides method invocation to create beans for each method name that takes a class argument.intloadBeanDefinitions(Resource resource)Load bean definitions from the specified Groovy script or XML file.intloadBeanDefinitions(EncodedResource encodedResource)Load bean definitions from the specified Groovy script or XML file.protected List<Object>resolveConstructorArguments(Object[] args, int start, int end)voidsetBinding(groovy.lang.Binding binding)Set the binding, i.e.voidsetMetaClass(groovy.lang.MetaClass metaClass)voidsetProperty(String name, Object value)This method overrides property setting in the scope of theGroovyBeanDefinitionReaderto set properties on the current bean definition.voidxmlns(Map<String,String> definition)Define a Spring XML namespace definition to use.Methods inherited from class org.springframework.beans.factory.support.AbstractBeanDefinitionReader
getBeanClassLoader, getBeanFactory, getBeanNameGenerator, getEnvironment, getRegistry, getResourceLoader, loadBeanDefinitions, loadBeanDefinitions, loadBeanDefinitions, loadBeanDefinitions, setBeanClassLoader, setBeanNameGenerator, setEnvironment, setResourceLoader
Constructor Detail
GroovyBeanDefinitionReader
public GroovyBeanDefinitionReader(BeanDefinitionRegistry registry)
Create a newGroovyBeanDefinitionReaderfor the givenBeanDefinitionRegistry.- Parameters:
registry- theBeanDefinitionRegistryto load bean definitions into
GroovyBeanDefinitionReader
public GroovyBeanDefinitionReader(XmlBeanDefinitionReader xmlBeanDefinitionReader)
Create a newGroovyBeanDefinitionReaderbased on the givenXmlBeanDefinitionReader, loading bean definitions into itsBeanDefinitionRegistryand delegating Groovy DSL loading to it.The supplied
XmlBeanDefinitionReadershould typically be pre-configured with XML validation disabled.- Parameters:
xmlBeanDefinitionReader- theXmlBeanDefinitionReaderto derive the registry from and to delegate Groovy DSL loading to
Method Detail
setMetaClass
public void setMetaClass(groovy.lang.MetaClass metaClass)
- Specified by:
setMetaClassin interfacegroovy.lang.GroovyObject
getMetaClass
public groovy.lang.MetaClass getMetaClass()
- Specified by:
getMetaClassin interfacegroovy.lang.GroovyObject
setBinding
public void setBinding(groovy.lang.Binding binding)
Set the binding, i.e. the Groovy variables available in the scope of aGroovyBeanDefinitionReaderclosure.
getBinding
public groovy.lang.Binding getBinding()
Return a specified binding for Groovy variables, if any.
loadBeanDefinitions
public int loadBeanDefinitions(Resource resource) throws BeanDefinitionStoreException
Load bean definitions from the specified Groovy script or XML file.Note that
".xml"files will be parsed as XML content; all other kinds of resources will be parsed as Groovy scripts.- Specified by:
loadBeanDefinitionsin interfaceBeanDefinitionReader- Parameters:
resource- the resource descriptor for the Groovy script or XML file- Returns:
- the number of bean definitions found
- Throws:
BeanDefinitionStoreException- in case of loading or parsing errors
loadBeanDefinitions
public int loadBeanDefinitions(EncodedResource encodedResource) throws BeanDefinitionStoreException
Load bean definitions from the specified Groovy script or XML file.Note that
".xml"files will be parsed as XML content; all other kinds of resources will be parsed as Groovy scripts.- Parameters:
encodedResource- the resource descriptor for the Groovy script or XML file, allowing specification of an encoding to use for parsing the file- Returns:
- the number of bean definitions found
- Throws:
BeanDefinitionStoreException- in case of loading or parsing errors
beans
public GroovyBeanDefinitionReader beans(groovy.lang.Closure closure)
Defines a set of beans for the given block or closure.- Parameters:
closure- the block or closure- Returns:
- this
GroovyBeanDefinitionReaderinstance
bean
public GenericBeanDefinition bean(Class<?> type)
Define an inner bean definition.- Parameters:
type- the bean type- Returns:
- the bean definition
bean
public AbstractBeanDefinition bean(Class<?> type, Object... args)
Define an inner bean definition.- Parameters:
type- the bean typeargs- the constructors arguments and closure configurer- Returns:
- the bean definition
xmlns
public void xmlns(Map<String,String> definition)
Define a Spring XML namespace definition to use.- Parameters:
definition- the namespace definition
importBeans
public void importBeans(String resourcePattern) throws IOException
Import Spring bean definitions from either XML or Groovy sources into the current bean builder instance.- Parameters:
resourcePattern- the resource pattern- Throws:
IOException
invokeMethod
public Object invokeMethod(String name, Object arg)
This method overrides method invocation to create beans for each method name that takes a class argument.- Specified by:
invokeMethodin interfacegroovy.lang.GroovyObject
invokeBeanDefiningClosure
protected GroovyBeanDefinitionReader invokeBeanDefiningClosure(groovy.lang.Closure callable)
When a method argument is only a closure it is a set of bean definitions.- Parameters:
callable- the closure argument- Returns:
- this
GroovyBeanDefinitionReaderinstance
resolveConstructorArguments
protected List<Object> resolveConstructorArguments(Object[] args, int start, int end)
setProperty
public void setProperty(String name, Object value)
This method overrides property setting in the scope of theGroovyBeanDefinitionReaderto set properties on the current bean definition.- Specified by:
setPropertyin interfacegroovy.lang.GroovyObject
applyPropertyToBeanDefinition
protected void applyPropertyToBeanDefinition(String name, Object value)
getProperty
public Object getProperty(String name)
This method overrides property retrieval in the scope of theGroovyBeanDefinitionReader. A property retrieval will either:- Retrieve a variable from the bean builder's binding if it exists
- Retrieve a RuntimeBeanReference for a specific bean if it exists
- Otherwise just delegate to MetaClass.getProperty which will resolve properties from the
GroovyBeanDefinitionReaderitself
- Specified by:
getPropertyin interfacegroovy.lang.GroovyObject