'Velocity Variable Noise Reference'에 해당되는 글 1건

  1. 2010.02.19 Velocity Variable Noise Reference
98..Etc/velocity2010. 2. 19. 18:13
반응형
import java.io.StringWriter;
import java.io.Writer;
import java.util.Date;

import org.apache.velocity.Template;
import org.apache.velocity.VelocityContext;
import org.apache.velocity.app.Velocity;

public class VMDemo {

  public static void main(String[] args) throws Exception {
    Velocity.init();
    Template t = Velocity.getTemplate("./src/VMDemo.vm");

    VelocityContext ctx = new VelocityContext();

    ctx.put("aDate",new Date());
    Writer writer = new StringWriter();
    t.merge(ctx, writer);

    System.out.println(writer);
  }
}
-------------------------------------------------------------------------------------
Hello $aaDate.getDate()
           
Posted by 1010