Java/Velocity/Include

Материал из Java эксперт
Версия от 07:07, 1 июня 2010; Admin (обсуждение | вклад) (1 версия)
(разн.) ← Предыдущая | Текущая версия (разн.) | Следующая → (разн.)
Перейти к: навигация, поиск

Include another template file

import java.io.StringWriter;
import java.io.Writer;
import org.apache.velocity.Template;
import org.apache.velocity.VelocityContext;
import org.apache.velocity.app.Velocity;
import org.apache.velocity.tools.generic.RenderTool;
public class VMDemo {
  public static void main(String[] args) throws Exception {
    Velocity.init();
    Template t = Velocity.getTemplate("./src/VMDemo.vm");
    VelocityContext ctx = new VelocityContext();
    Writer writer = new StringWriter();
    t.merge(ctx, writer);
    System.out.println(writer);
  }
}
-------------------------------------------------------------------------------------
<html>
  <head>
    <title>Homepage</title>
  </head>
  <body>
    <h1>Welcome!!</h1>
    #include("./src/pageFooter.vm")
  </body>
</html>
-------------------------------------------------------------------------------------
<h3>Copyright &copy; 2004</h3>