标签:
Velocity是一个基于java的template engine。它允许Web designer引用Java Code中定义的方法。Web designer可以和Java工程师根据MVC模型并发编程。也就是说,Velocity使得Java开发和网页开发分离。
Velocity还可以根据template可以生成web pages, SQL, PostScript和其他输出,或者和其他系统的组件集成。
VTL在web site中使用reference嵌入动态内容。变量是reference的一种。比如下面的例子
#set( $a = "Velocity" )
这条VTL语句,#set是指令,$a是变量。String值的变量使用单引号或者双引号括起来,单引号表示raw string,双引号或得到解析后的值。
Rule of thumb: References begin with $ and are used to get something. Directives begin with # and are used to do something.
VTL有三种reference: 变量, properties和方法。作为使用VTL的设计者,你和你的工程师必须就reference的名字达成一致。这是协议!
从Velocity 1.6开始,所有array reference被看做是固定长度的list。这意味着你可以在array reference上使用 java.util.List所有方法
Reference允许template designer在web sites中生成动态内容。指令——使用脚本元素操作Java code的输出
最近遇到一个需要局部定制template的case。这要求template能动态render
JavaCode
public void test1() { VelocityEngine velo = new VelocityEngine(); velo.setProperty(RuntimeConstants.RESOURCE_LOADER, "classpath"); velo.setProperty("classpath.resource.loader.class", ClasspathResourceLoader.class.getName()); velo.init(); VelocityContext context = new VelocityContext(); Map<String, String> alert = new HashMap<>(); alert.put("timestamp", "20160719"); alert.put("policy", "policy description"); String tpl = "<ul><li>cluster:${alert.timestamp}</li><li>colo:${alert.policy}</li></ul>"; context.put("tpl" , tpl); context.put("alert", alert); Template tmpl = velo.getTemplate("ALERT_TEST.vm"); StringWriter writer = new StringWriter(); tmpl.merge(context, writer); LOG.info(writer.toString()); } |
ALERT_TEST.vm
... #evaluate($tpl) … |
标签:
原文地址:http://www.cnblogs.com/qingwen/p/5692396.html