Package org.apache.tuscany.container.spring.impl

Examples of org.apache.tuscany.container.spring.impl.SpringScaAdapter


    * @see org.springframework.context.support.AbstractApplicationContext#postProcessBeanFactory(org.springframework.beans.factory.config.ConfigurableListableBeanFactory)
    */
    protected void postProcessBeanFactory(ConfigurableListableBeanFactory beanFactory) throws BeansException {
        super.postProcessBeanFactory(beanFactory);
        beanFactory.addBeanPostProcessor(new ScaAdapterPostProcessor
                (new SpringScaAdapter(componentType)));
        beanFactory.ignoreDependencyInterface(ScaAdapterAware.class);
    }
View Full Code Here


        return new Resource[]{appXml};
    }

    protected void postProcessBeanFactory(ConfigurableListableBeanFactory beanFactory) throws BeansException {
        super.postProcessBeanFactory(beanFactory);
        beanFactory.addBeanPostProcessor(new ScaAdapterPostProcessor(new SpringScaAdapter(componentType)));
        beanFactory.ignoreDependencyInterface(ScaAdapterAware.class);
    }
View Full Code Here

TOP

Related Classes of org.apache.tuscany.container.spring.impl.SpringScaAdapter

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.