Package br.com.caelum.vraptor.templates.plugins.velocity

Examples of br.com.caelum.vraptor.templates.plugins.velocity.VelocityPlugin


      this.plugin = new FreemarkerPlugin(configs);
      logger.debug("Using Freemarker as Template Engine");
    }
   
    else if (isClassPresent("org.apache.velocity.Template")) {
      this.plugin = new VelocityPlugin(configs);
      logger.debug("Using Velocity as Template Engine");
    }
    
    else if (isClassPresent("org.fusesource.scalate.Template")) {   
      this.plugin = new ScalatePlugin(configs);     
View Full Code Here

TOP

Related Classes of br.com.caelum.vraptor.templates.plugins.velocity.VelocityPlugin

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.