${key}對象
Student對象。學號、姓名、年齡string
${key.property}模板
<#list studentList as student>date
${student.id}/${studnet.name}List
</#list>循環
<#list studentList as student>map
${student_index}im
</#list>數據
<#if student_index % 2 == 0>datetime
<#else>
</#if>
當前日期${date?date}
當前時間${date?time}
當前日期和時間${date?datetime}
自定義格式${date?string("yyyyMM/dd HH:mm:ss")}
${val!「空值」} 加上!後跟默認值
<#if val??>
val有值
<#else>
val爲null
<#if>
<#include 「模板名稱」>