Package org.springframework.webflow.mvc.builder

Examples of org.springframework.webflow.mvc.builder.MvcViewFactoryCreator


    Assert.notNull(applicationContext, "applicationContext is required");
    this.viewFactoryCreator = initViewFactoryCreator(applicationContext);
  }

  private static ViewFactoryCreator initViewFactoryCreator(ApplicationContext applicationContext) {
    MvcViewFactoryCreator viewFactoryCreator = new MvcViewFactoryCreator();
    viewFactoryCreator.setApplicationContext(applicationContext);
    return viewFactoryCreator;
  }
View Full Code Here

TOP

Related Classes of org.springframework.webflow.mvc.builder.MvcViewFactoryCreator

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.