Package org.impalaframework.spring.dynamic

Examples of org.impalaframework.spring.dynamic.DynamicScope


    // create the bean factory
    DynamicBeanFactory beanFactory = new DynamicBeanFactory();
    beanFactory.setBeanClassLoader(classLoader);

    // create the scope, and register with the bean factory
    DynamicScope dynamicScope = new DynamicScope();
    dynamicScope.setClassLoader(classLoader);
    beanFactory.registerScope("dynamic", dynamicScope);

    // create the application context, and set the class loader
    GenericApplicationContext context = new GenericApplicationContext(beanFactory);
    context.setClassLoader(classLoader);
View Full Code Here

TOP

Related Classes of org.impalaframework.spring.dynamic.DynamicScope

Copyright © 2018 www.massapicom. 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.