一、概述
Velocity是一个基于java的模板引擎,用于页面静态化。当前主流的模板引擎有Velocity、Freemarker 、Thymeleaf。
二、可存放字符串、对象、数组、List、Map、时间、条件判断、页面复赋值等(大括号可省略)
①取字符串:$!Hello
②取对象:
$person.name
③取List集合
#foreach($person in $persons)
$person.id 和 $person.name
#end
④取Map集合
#foreach($map in $maps.entrySet())
$index $map.getKey() 和 $map.getValue()
#end
⑤条件判断
#if($bool)
成立
#else
不成立
#end
⑥页面赋值
#set($name="老张")
${name}
⑦页面引入
#parse("/common/nav.vm")