Package br.net.woodstock.rockframework.web.struts2.spring

Examples of br.net.woodstock.rockframework.web.struts2.spring.SpringObjectFactory


            if (applicationContext == null) {
                LOG.warn("ApplicationContext could not be found.  Action classes will not be autowired.");
            } else {
                setApplicationContext(applicationContext);
                factory = new SpringObjectFactory();
                factory.setApplicationContext(getApplicationContext());
                if (autowireStrategy != null) {
                    factory.setAutowireStrategy(autowireStrategy.intValue());
                }
            }
View Full Code Here


                if (LOG.isWarnEnabled()) {
                    LOG.warn("ApplicationContext could not be found.  Action classes will not be autowired.");
                }
            } else {
                setApplicationContext(applicationContext);
                factory = new SpringObjectFactory();
                factory.setApplicationContext(getApplicationContext());
                if (autowireStrategy != null) {
                    factory.setAutowireStrategy(autowireStrategy.intValue());
                }
            }
View Full Code Here

    // Since we're about to override...
    builder.setAllowDuplicates(true);

    builder.factory(ObjectFactory.class, new Factory<ObjectFactory>() {
      public ObjectFactory create(Context xworkContext) throws Exception {
        SpringObjectFactory f = new SpringObjectFactory();
        xworkContext.getContainer().inject(f);
        f.setApplicationContext(_applicationContext);
        f.setAutowireStrategy(_autoWireStrategy);
        return f;

      }
    });
  }
View Full Code Here

TOP

Related Classes of br.net.woodstock.rockframework.web.struts2.spring.SpringObjectFactory

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.