使用

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-freemarker</artifactId>
        </dependency>
spring:
  freemarker:
    cache: false
    enabled: true
    suffix: .html
    content-type: text/html

指令

<h1>hello ${name}</h1>

list指令

<#list list as name>
    <li>${name}</li>
</#list>

map操作

<h1>${map['name']}</h1> <!--第一种方式-->
<h1>${map.name}</h1> <!--第二种方式-->
<#list map?keys as key>
    <li>${map[key]}</li>
</#list>

条件渲染

<#if map.name == 'cxk'>
    jntm
</#if>

空值处理

<#if map.name??> <!--返回值代表是否存在-->
    存在
</#if>

${map.class!"default"} <!--不存在则取默认值-->

内建函数

内建函数语法格式: 变量+?+函数名称

    ${time?time}
    ${time?date}
    ${time?datetime}