Use if in velocity : If « Velocity « Java






Use if in velocity



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.IteratorTool;

public class IteratorToolExample {

  public static void main(String[] args) throws Exception {
    Velocity.init();

    Template t = Velocity.getTemplate("./src/iteratorTool.vm");

    VelocityContext ctx = new VelocityContext();
    ctx.put("var", new IteratorTool());

    Writer writer = new StringWriter();
    t.merge(ctx, writer);

    System.out.println(writer);
  }
}
-------------------------------------------------------------------------------------
#set($list = ["A", "B", "C", "D", "E"])

#foreach($item in $list)
    #if($velocityCount <= 3)
        $item
    #end
#end
           
       








velocity-if.zip( 875 k)

Related examples in the same category

1.If Else and End
2.If and elseif
3.If statement inside a for loop