Class ClasspathXmlApplicationContextsFactoryBean

  • All Implemented Interfaces:
    org.springframework.beans.factory.Aware, org.springframework.beans.factory.FactoryBean<ApplicationContextFactory[]>, org.springframework.context.ApplicationContextAware

    public class ClasspathXmlApplicationContextsFactoryBean
    extends java.lang.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
    • Constructor Detail

      • ClasspathXmlApplicationContextsFactoryBean

        public ClasspathXmlApplicationContextsFactoryBean()
    • Method Detail

      • setResources

        public void setResources​(org.springframework.core.io.Resource[] resources)
        A set of resources to load using a GenericApplicationContextFactory. Each resource should be a Spring configuration file which is loaded into an application context whose parent is the current context. In a configuration file the resources can be given as a pattern (e.g. 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​(java.lang.Class<? extends org.springframework.beans.factory.config.BeanFactoryPostProcessor>[] beanFactoryPostProcessorClasses)
        Determines which bean factory post processors (like property placeholders) should be copied from the parent context. Defaults to PropertyPlaceholderConfigurer and CustomEditorConfigurer.
        Parameters:
        beanFactoryPostProcessorClasses - post processor types to be copied
      • setBeanPostProcessorExcludeClasses

        public void setBeanPostProcessorExcludeClasses​(java.lang.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
      • 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)