Package org.tamacat.httpd.page

Source Code of org.tamacat.httpd.page.Velocity_test

package org.tamacat.httpd.page;

import org.apache.velocity.app.VelocityEngine;
import org.apache.velocity.runtime.RuntimeConstants;

public class Velocity_test {

  public static void main(String[] args) throws Exception {
    VelocityEngine ve = new VelocityEngine();//PropertyUtils.getProperties("server.properties"));
    ve.setProperty("error.resource.loader.class",
      //"org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader");
      "org.apache.velocity.runtime.resource.loader.URLResourceLoader");
    ve.setProperty(
      RuntimeConstants.RUNTIME_LOG_LOGSYSTEM_CLASS,
            "org.apache.velocity.runtime.log.Log4JLogChute");
    ve.setProperty("runtime.log.logsystem.log4j.logger", "org.tamacat.Test");
    ve.init();
    System.out.println(ve.getTemplate("htdocs/web/index.vm").getData());
  }

}
TOP

Related Classes of org.tamacat.httpd.page.Velocity_test

TOP
Copyright © 2018 www.massapi.com. 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.