Package net.sourceforge.stripes.controller

Examples of net.sourceforge.stripes.controller.DefaultObjectFactory


                this.debugMode = false;
            }

            this.objectFactory = initObjectFactory();
            if (this.objectFactory == null) {
                this.objectFactory = new DefaultObjectFactory();
                this.objectFactory.init(this);
            }
            if (this.objectFactory instanceof DefaultObjectFactory) {
                List<Class<? extends ObjectPostProcessor>> classes = getBootstrapPropertyResolver()
                        .getClassPropertyList(ObjectPostProcessor.class);
View Full Code Here


    @Test(groups = "fast", dependsOnMethods = "testExplicitSetterInjection")
    public void testInjectionViaObjectPostProcessor() throws Exception {
        Configuration configuration = StripesTestFixture.getDefaultConfiguration();
        ServletContext sc = configuration.getServletContext();
        sc.setAttribute(WebApplicationContext.ROOT_WEB_APPLICATION_CONTEXT_ATTRIBUTE, this.ctx);
        DefaultObjectFactory factory = new DefaultObjectFactory();
        factory.init(configuration);
        factory.addPostProcessor(new SpringInjectionPostProcessor());
        PostProcessorTarget target = factory.newInstance(PostProcessorTarget.class);
        Assert.assertNotNull(target.getBean());
    }
View Full Code Here

TOP

Related Classes of net.sourceforge.stripes.controller.DefaultObjectFactory

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.