Class ClasspathXmlApplicationContextsFactoryBean

java.lang.Object
org.springframework.batch.core.configuration.support.ClasspathXmlApplicationContextsFactoryBean
All Implemented Interfaces:
org.springframework.beans.factory.Aware, org.springframework.beans.factory.FactoryBean<ApplicationContextFactory[]>, org.springframework.context.ApplicationContextAware

public class ClasspathXmlApplicationContextsFactoryBean extends Object implements org.springframework.beans.factory.FactoryBean<ApplicationContextFactory[]>, org.springframework.context.ApplicationContextAware
A convenient factory for creating a set of ApplicationContextFactory components from a set of resources.
Author:
Dave Syer, Mahmoud Ben Hassine
  • Constructor Details

    • ClasspathXmlApplicationContextsFactoryBean

      public ClasspathXmlApplicationContextsFactoryBean()
  • Method Details

    • setResources

      public void setResources(org.springframework.core.io.Resource[] resources)
      A set of resources to load by using a GenericApplicationContextFactory. Each resource should be a Spring configuration file that is loaded into an application context whose parent is the current context. In a configuration file, the resources can be given as a pattern (for example, classpath*:/config/*-context.xml).
      Parameters:
      resources - array of resources to use
    • setCopyConfiguration

      public void setCopyConfiguration(boolean copyConfiguration)
      Flag to indicate that configuration, such as bean post processors and custom editors, should be copied from the parent context. Defaults to true.
      Parameters:
      copyConfiguration - the flag value to set
    • setBeanFactoryPostProcessorClasses

      public void setBeanFactoryPostProcessorClasses(Class<? extends org.springframework.beans.factory.config.BeanFactoryPostProcessor>[] beanFactoryPostProcessorClasses)
      Determines which bean factory post processors (such as property placeholders) should be copied from the parent context. Defaults to PropertySourcesPlaceholderConfigurer and CustomEditorConfigurer.
      Parameters:
      beanFactoryPostProcessorClasses - post processor types to be copied
    • setBeanPostProcessorExcludeClasses

      public void setBeanPostProcessorExcludeClasses(Class<?>[] beanPostProcessorExcludeClasses)
      Determines, by exclusion, which bean post processors should be copied from the parent context. Defaults to BeanFactoryAware (so any post processors that have a reference to the parent bean factory are not copied into the child). Note that these classes do not themselves have to be BeanPostProcessor implementations or sub-interfaces.
      Parameters:
      beanPostProcessorExcludeClasses - the classes to set
    • getObject

      public ApplicationContextFactory[] getObject() throws Exception
      Create an ApplicationContextFactory from each resource provided in setResources(Resource[]).
      Specified by:
      getObject in interface org.springframework.beans.factory.FactoryBean<ApplicationContextFactory[]>
      Returns:
      an array of ApplicationContextFactory
      Throws:
      Exception
      See Also:
      • FactoryBean.getObject()
    • getObjectType

      public Class<?> getObjectType()
      The type of object returned by this factory as an array of ApplicationContextFactory.
      Specified by:
      getObjectType in interface org.springframework.beans.factory.FactoryBean<ApplicationContextFactory[]>
      Returns:
      array of ApplicationContextFactory
      See Also:
      • FactoryBean.getObjectType()
    • isSingleton

      public boolean isSingleton()
      Optimization hint for bean factory.
      Specified by:
      isSingleton in interface org.springframework.beans.factory.FactoryBean<ApplicationContextFactory[]>
      Returns:
      true
      See Also:
      • FactoryBean.isSingleton()
    • setApplicationContext

      public void setApplicationContext(org.springframework.context.ApplicationContext applicationContext)
      An application context that can be used as a parent context for all the factories.
      Specified by:
      setApplicationContext in interface org.springframework.context.ApplicationContextAware
      Parameters:
      applicationContext - the ApplicationContext to set
      See Also:
      • ApplicationContextAware.setApplicationContext(org.springframework.context.ApplicationContext)