Package org.springframework.context.support

Examples of org.springframework.context.support.AbstractApplicationContext.refresh()


    }

    // Make sure the parent can handle exposed beans - if not, introduce a supporting BeanFactory in the hierarchy
    if ( !( beanFactory instanceof AcrossListableBeanFactory ) ) {
      AbstractApplicationContext parentApplicationContext = applicationContextFactory.createApplicationContext();
      parentApplicationContext.refresh();
      parentApplicationContext.start();

      ConfigurableListableBeanFactory parentBeanFactory = parentApplicationContext.getBeanFactory();

      parentBeanFactory.setParentBeanFactory( currentBeanFactory.getParentBeanFactory() );
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.