Package net.asfun.jangod.base

Examples of net.asfun.jangod.base.Application


  StatefulObjectPool<Processor> pool;
  Application application;
 
  public TemplateEngine() {
    application = new Application();
    initProcessorPool();
  }
View Full Code Here


  }

  @Override
  public void afterPropertiesSet() throws Exception {
    if ( configurationFile != null ) {
      Application application = new Application(configurationFile);
      engine = new TemplateEngine(application);
    } else {
      engine = new TemplateEngine();
    }
    if ( root != null ) {
View Full Code Here

TOP

Related Classes of net.asfun.jangod.base.Application

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.