Freemarker 模板引擎

Freemarker 模板引擎

1. FreeMarker介绍在这里插入图片描述

  1. freemarker是一个用Java开发的模板引擎

常用的java模板引擎还有哪些?
Jsp、Freemarker、Thymeleaf 、Velocity 等。

  1. 模板+数据模型=输出
    freemarker并不关心数据的来源,只是根据模板的内容,将数据模型在模板中显示并输出文件(通常为html,也
    可以生成其它格式的文本文件)

    1.数据模型
    数据模型在java中可以是基本类型也可以List、Map、Pojo等复杂类型。
    2.来自官方的例子:(https://freemarker.apache.org/docs/dgui_quickstart_basics.html)
    数据模型:
    在这里插入图片描述

    模板:
    在这里插入图片描述
    输出:
    在这里插入图片描述

1.2 FreeMarker快速入门

freemarker作为springmvc一种视图格式,默认情况下SpringMVC支持freemarker视图格式。
需要创建Spring Boot+Freemarker工程用于测试模板。

创建测试工程

创建一个freemarker 的测试工程专门用于freemarker的功能测试与模板的测试。

pom.xml如下

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <parent>
        <artifactId>xc-framework-parent</artifactId>
        <groupId>com.xuecheng</groupId>
        <version>1.0-SNAPSHOT</version>
        <relativePath>../xc-framework-parent/pom.xml</relativePath>
    </parent>
    <modelVersion>4.0.0</modelVersion>

    <artifactId>test-freemarker</artifactId>
    <dependencies>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-freemarker</artifactId>
        </dependency>
        <dependency>
            <groupId>org.projectlombok</groupId>
            <artifactId>lombok</artifactId>
        </dependency>
        <dependency>
            <groupId>com.squareup.okhttp3</groupId>
            <artifactId>okhttp</artifactId>
        </dependency>
        <dependency>
            <groupId>org.apache.commons</groupId>
            <artifactId>commons-io</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>
    </dependencies>

</project>

配置文件

application.yml内容如下:

server:
  port: 8088 #服务端口

spring:
  application:
    name: test‐freemarker #指定服务名
  freemarker:
    cache: false #关闭模板缓存,方便测试
    settings:
      template_update_delay: 0 #检查模板更新延迟时间,设置为0表示立即检查,如果时间大于0会有缓存不方便进行模板测试

创建模型类

在freemarker的测试工程下创建模型类型用于测试

package com.xuecheng.test.freemarker.model;

import lombok.Data;
import lombok.ToString;

import java.util.Date;
import java.util.List;

/**
 * @author 嘿嘿嘿1212
 * @version 1.0
 * @date 2019/11/16 21:04
 */
@Data
@ToString
public class Student {
    private String name;//姓名
    private int age;//年龄
    private Date birthday;//生日
    private Float money;//钱包
    private List<Student> friends;//朋友列表
    private Student bestFriend;//最好的朋友

}

创建模板

在 src/main/resources下创建templates,此目录为freemarker的默认模板存放目录。
在templates下创建模板文件test1.ftl,模板中的${name}最终会被freemarker替换成具体的数据。

<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <title>Hello World!</title>
</head>
<body>
Hello ${name}!
<br/>
<table>
    <tr>
        <td>序号</td>
        <td>姓名</td>
        <td>年龄</td>
        <td>钱包</td>
        <td>出生日期</td>
    </tr>
    <#if stus??>
        <#list stus as stu>
            <tr>
                <td>${stu_index + 1}</td>
                <td <#if stu.name=="小明">style="background-color: beige" </#if>>${stu.name}</td>
                <td <#if stu.money gt 300>style="background-color: red"</#if>>${stu.age}</td>
                <td>${stu.money}</td>
                <td>${(stu.birthday?string("YYYY年MM月dd日"))!''}</td>
            </tr>
        </#list>
    </#if>
</table>
<br/>
遍历数据模型中的stuMap(map数据),第一种方法:在中括号中填写map的key,第二种方法:在map后边直接加"点key值"
<br/>
输出stu1的学生信息:<br/>
<#if stuMap?? && stuMap.stu1??>
    姓名:${stuMap['stu1'].name}<br/>
    年龄:${stuMap['stu1'].age}<br/>
    姓名:${stuMap.stu1.name}<br/>
    年龄:${stuMap.stu1.age}<br/>
</#if>

遍历map中的key,stuMap?keys就是key列表(是一个list),
<table>
    <tr>
        <td>序号</td>
        <td>姓名</td>
        <td>年龄</td>
        <td>钱包</td>
    </tr>
    <#list stuMap?keys as k>
        <tr>
            <td>${k_index+1}</td>
            <td>${(stuMap[k].name)!''}</td>
            <td>${(stuMap[k].age)!''}</td>
            <td>${(stuMap[k].money)!''}</td>
        </tr>
    </#list>
    <br/>
    学生的个数:${stus?size}<br/>
    ${point?c}
</table>
</br>
<table>
    <tr>
        <td>姓名</td>
        <td>年龄</td>
        <td>出生日期</td>
        <td>钱包</td>
        <td>最好的朋友</td>
        <td>朋友个数</td>
        <td>朋友列表</td>
    </tr>
    <#if stus??>
        <#list stus as stu>
            <tr>
                <td>${stu.name!''}</td>
                <td>${stu.age}</td>
                <td>${(stu.birthday?date)!''}</td>
                <td>${stu.money}</td>
                <td>${(stu.bestFriend.name)!''}</td>
                <td>${(stu.friends?size)!0}</td>
                <td>
                    <#if stu.friends??>
                        <#list stu.friends as firend>
                            ${firend.name!''}<br/>
                        </#list>
                    </#if>
                </td>
            </tr>
        </#list>
    </#if>

</table>
<br/>
<#assign text="{'bank':'工商银行','account':'10101920201920212'}"/>
<#assign data=text?eval />
开户行:${data.bank} 账号:${data.account}
</body>
</html>

创建controller

package com.xuecheng.test.freemarker.controller;

import com.xuecheng.test.freemarker.model.Student;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.http.ResponseEntity;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.client.RestTemplate;

import java.util.*;

/**
 * @author 嘿嘿嘿1212
 * @version 1.0
 * @date 2019/11/16 21:08
 */
@Controller//这里不要使用@RestController,要输出html页面,RestController输出的是json数据
@RequestMapping("/freemarker")
public class FreemarkerController {
    @Autowired
    private RestTemplate restTemplate;

    @RequestMapping("/index_banner")
    public String indexBanner(Map<String, Object> map) {
        //使用restTemplate请求轮播图的模型数据
        ResponseEntity<Map> forEntity = restTemplate.getForEntity("http://localhost:31001/cms/config/getmodel/5a791725dd573c3574ee333f", Map.class);
        Map body = forEntity.getBody();
        //设置模型数据
        map.putAll(body);
        return "index_banner";
    }

    @RequestMapping("/test1")
    public String test1(Map<String, Object> map) {
        map.put("name", "唐小智");
        Student stu1 = new Student();
        //给第一名学生设置信息
        stu1.setName("小明");
        stu1.setAge(18);
        stu1.setMoney(1000.86f);
        stu1.setBirthday(new Date());
        Student stu2 = new Student();
        //给第二名学生设置信息
        stu2.setName("小红");
        stu2.setMoney(200.1f);
        stu2.setAge(19);
        // stu2.setBirthday(new Date());
        //创建列表
        List<Student> friends = new ArrayList<>();
        //将第一名学生放入列表
        friends.add(stu1);
        //将列表放入第二名学生的朋友列表中
        stu2.setFriends(friends);
        //设置第二名学生的最好朋友
        stu2.setBestFriend(stu1);
        List<Student> stus = new ArrayList<>();
        stus.add(stu1);
        stus.add(stu2);
        //将数据放入数据模型
        map.put("stus", stus);
        //准备map数据
        HashMap<String, Student> stuMap = new HashMap<>();
//        stuMap.put("stu1", stu1);
        stuMap.put("stu2", stu2);
        //向数据模型放数据
        map.put("stu1", stu1);
        //向数据模型放数据
        map.put("stuMap", stuMap);

        map.put("point", 102920122);
        //返回freemarker模板的位置,基于resources/templates路径的
        return "test1";
    }
}

创建启动类

package com.xuecheng.test.freemarker;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.context.annotation.Bean;
import org.springframework.http.client.OkHttp3ClientHttpRequestFactory;
import org.springframework.web.client.RestTemplate;

@SpringBootApplication
public class FreemarkerTestApplication {
    public static void main(String[] args) {
        SpringApplication.run(FreemarkerTestApplication.class, args);
    }
    @Bean
    public RestTemplate restTemplate(){
        return new RestTemplate(new OkHttp3ClientHttpRequestFactory());
    }
}

测试

请求:http://localhost:8088/freemarker/test1

屏幕显示:Hello 唐小智!

1.3 FreeMarker基础

核心指令

数据模型

Freemarker静态化依赖数据模型和模板,下边定义数据模型:
下边方法形参map即为freemarker静态化所需要的数据模型,在map中填充数据:

 @RequestMapping("/test1")
    public String test1(Map<String, Object> map) {
        map.put("name", "唐小智");
        Student stu1 = new Student();
        //给第一名学生设置信息
        stu1.setName("小明");
        stu1.setAge(18);
        stu1.setMoney(1000.86f);
        stu1.setBirthday(new Date());
        Student stu2 = new Student();
        //给第二名学生设置信息
        stu2.setName("小红");
        stu2.setMoney(200.1f);
        stu2.setAge(19);
        // stu2.setBirthday(new Date());
        //创建列表
        List<Student> friends = new ArrayList<>();
        //将第一名学生放入列表
        friends.add(stu1);
        //将列表放入第二名学生的朋友列表中
        stu2.setFriends(friends);
        //设置第二名学生的最好朋友
        stu2.setBestFriend(stu1);
        List<Student> stus = new ArrayList<>();
        stus.add(stu1);
        stus.add(stu2);
        //将数据放入数据模型
        map.put("stus", stus);
        //准备map数据
        HashMap<String, Student> stuMap = new HashMap<>();
//        stuMap.put("stu1", stu1);
        stuMap.put("stu2", stu2);
        //向数据模型放数据
        map.put("stu1", stu1);
        //向数据模型放数据
        map.put("stuMap", stuMap);

        map.put("point", 102920122);
        //返回freemarker模板的位置,基于resources/templates路径的
        return "test1";
    }
List指令

本节定义freemarker模板,模板中使用freemarker的指令,关于freemarker的指令需要知道:

1、注释,即<#‐‐和‐‐>,介于其之间的内容会被freemarker忽略
2、插值(Interpolation):即${..}部分,freemarker会用真实的值代替${..}
3、FTL指令:和HTML标记类似,名字前加#予以区分,Freemarker会解析标签中的表达式或逻辑。
4、文本,仅文本信息,这些不是freemarker的注释、插值、FTL指令的内容会被freemarker忽略解析,直接输出内
容。

在test1.ftl模板中使用list指令遍历数据模型中的数据:

<table>
    <tr>
        <td>序号</td>
        <td>姓名</td>
        <td>年龄</td>
        <td>钱包</td>
    </tr>
<#list stus as stu>
    <tr>
        <td>${stu_index + 1}</td>
        <td>${stu.name}</td>
        <td>${stu.age}</td>
        <td>${stu.mondy}</td>
    </tr>
</#list>
</table>
遍历Map数据
  1. 数据模型

    使用map指令遍历数据模型中的stuMap

  2. 模板

输出stu1的学生信息:<br/>
姓名:${stuMap['stu1'].name}<br/>
年龄:${stuMap['stu1'].age}<br/>
输出stu1的学生信息:<br/>
姓名:${stuMap.stu1.name}<br/>
年龄:${stuMap.stu1.age}<br/>
遍历输出两个学生信息:<br/>
<table>
    <tr>
        <td>序号</td>
        <td>姓名</td>
        <td>年龄</td>
        <td>钱包</td>
    </tr>
<#list stuMap?keys as k>
    <tr>
        <td>${k_index + 1}</td>
        <td>${stuMap[k].name}</td>
        <td>${stuMap[k].age}</td>
        <td >${stuMap[k].mondy}</td>
    </tr>
</#list>
</table>	
if指令

if 指令即判断指令,是常用的FTL指令,freemarker在解析时遇到if会进行判断,条件为真则输出if中间的内容,否
则跳过内容不再输出。

  1. 数据模型

    使用list指令中测试数据模型。

  2. 模板

    <table>
        <tr>
            <td>姓名</td>
            <td>年龄</td>
            <td>钱包</td>
        </tr>
    <#list stus as stu>
        <tr>
            <td <#if stu.name =='小明'>style="background:red;"</#if>>${stu.name}</td>
            <td>${stu.age}</td>
            <td >${stu.mondy}</td>
        </tr>
    </#list>
    </table>
    

    通过阅读上边的代码,实现的功能是:如果姓名为“小明”则背景色显示为红色。

其它指令

运算符
  1. 算数运算符 FreeMarker表达式中完全支持算术运算,FreeMarker支持的算术运算符包括:+, - , * , / , %

  2. 逻辑运算符 逻辑运算符有如下几个: 逻辑与:&& 逻辑或:|| 逻辑非:! 逻辑运算符只能作用于布尔值,否则将产生错误

  3. 比较运算符 表达式中支持的比较运算符有如下几个:

  4. =或者==:判断两个值是否相等.

  5. !=:判断两个值是否不等.

  6. 或者gt:判断左边值是否大于右边值 4 >=或者gte:判断左边值是否大于等于右边值

  7. <或者lt:判断左边值是否小于右边值

  8. <=或者lte:判断左边值是否小于等于右边值

注意: =和!=可以用于字符串,数值和日期来比较是否相等,但=和!=两边必须是相同类型的值,否则会产生错误,而且FreeMarker是精确比较,"x","x ","X"是不等的.其它的运行符可以作用于数字和日期,但不能作用于字符串,大部分的时候,使用gt等字母运算符代替>会有更好的效果,因为 FreeMarker会把>解释成FTL标签的结束字符,当然,也可以使用括号来避免这种情况,如:<#if (x>y)>

空值处理
  1. 判断某变量是否存在使用 “??” 用法为:variable??,如果该变量存在,返回true,否则返回false

    例:为防止stus为空报错可以加上判断如下:

    <#if stus??>
    <#list stus as stu>
    ......
    </#list>
    </#if>
    
  2. 缺失变量默认值使用 “!” 使用!要以指定一个默认值,当变量为空时显示默认值。
    例: ${name!’’}表示如果name为空显示空字符串。

    如果是嵌套对象则建议使用()括起来。

    例: ${(stu.bestFriend.name)!’’}表示,如果stu或bestFriend或name为空默认显示空字符串。

内建函数

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

  1. 和到某个集合的大小

    ${集合名?size}

  2. 日期格式化

    显示年月日: ${today?date}
    显示时分秒:${today?time}
    显示日期+时间:${today?datetime} <br>
    自定义格式化: ${today?string("yyyy年MM月")}
    
  3. 内建函数c

    map.put(“point”, 102920122);
    point是数字型,使用 p o i n t 会 显 示 这 个 数 字 的 值 , 不 并 每 三 位 使 用 逗 号 分 隔 。 如 果 不 想 显 示 为 每 三 位 分 隔 的 数 字 , 可 以 使 用 c 函 数 将 数 字 型 转 成 字 符 串 输 出 ‘ {point}会显示这个数字的值,不并每三位使用逗号分隔。 如果不想显示为每三位分隔的数字,可以使用c函数将数字型转成字符串输出 ` point使使c{point?c}`

  4. 将json字符串转成对象

    一个例子:
    其中用到了 assign标签,assign的作用是定义一个变量

    <#assign text="{'bank':'工商银行','account':'10101920201920212'}" />
    <#assign data=text?eval />
    开户行:${data.bank} 账号:${data.account}
    

静态化测试

使用freemarker将页面生成html文件,测试html文件生成的方法:

  1. 使用模板文件静态化
    定义模板文件,使用freemarker静态化程序生成html文件。
  2. 使用模板字符串静态化
    定义模板字符串,使用freemarker静态化程序生成html文件。
使用模板文件静态化
  1. 创建模板文件(使用之前创建过测试文件)

    <!DOCTYPE html>
    <html>
    <head>
        <meta charset="utf-8">
        <title>Hello World!</title>
    </head>
    <body>
    Hello ${name}!
    <br/>
    <table>
        <tr>
            <td>序号</td>
            <td>姓名</td>
            <td>年龄</td>
            <td>钱包</td>
            <td>出生日期</td>
        </tr>
        <#if stus??>
            <#list stus as stu>
                <tr>
                    <td>${stu_index + 1}</td>
                    <td <#if stu.name=="小明">style="background-color: beige" </#if>>${stu.name}</td>
                    <td <#if stu.money gt 300>style="background-color: red"</#if>>${stu.age}</td>
                    <td>${stu.money}</td>
                    <td>${(stu.birthday?string("YYYY年MM月dd日"))!''}</td>
                </tr>
            </#list>
        </#if>
    </table>
    <br/>
    遍历数据模型中的stuMap(map数据),第一种方法:在中括号中填写map的key,第二种方法:在map后边直接加"点key值"
    <br/>
    输出stu1的学生信息:<br/>
    <#if stuMap?? && stuMap.stu1??>
        姓名:${stuMap['stu1'].name}<br/>
        年龄:${stuMap['stu1'].age}<br/>
        姓名:${stuMap.stu1.name}<br/>
        年龄:${stuMap.stu1.age}<br/>
    </#if>
    
    遍历map中的key,stuMap?keys就是key列表(是一个list),
    <table>
        <tr>
            <td>序号</td>
            <td>姓名</td>
            <td>年龄</td>
            <td>钱包</td>
        </tr>
        <#list stuMap?keys as k>
            <tr>
                <td>${k_index+1}</td>
                <td>${(stuMap[k].name)!''}</td>
                <td>${(stuMap[k].age)!''}</td>
                <td>${(stuMap[k].money)!''}</td>
            </tr>
        </#list>
        <br/>
        学生的个数:${stus?size}<br/>
        ${point?c}
    </table>
    </br>
    <table>
        <tr>
            <td>姓名</td>
            <td>年龄</td>
            <td>出生日期</td>
            <td>钱包</td>
            <td>最好的朋友</td>
            <td>朋友个数</td>
            <td>朋友列表</td>
        </tr>
        <#if stus??>
            <#list stus as stu>
                <tr>
                    <td>${stu.name!''}</td>
                    <td>${stu.age}</td>
                    <td>${(stu.birthday?date)!''}</td>
                    <td>${stu.money}</td>
                    <td>${(stu.bestFriend.name)!''}</td>
                    <td>${(stu.friends?size)!0}</td>
                    <td>
                        <#if stu.friends??>
                            <#list stu.friends as firend>
                                ${firend.name!''}<br/>
                            </#list>
                        </#if>
                    </td>
                </tr>
            </#list>
        </#if>
    
    </table>
    <br/>
    <#assign text="{'bank':'工商银行','account':'10101920201920212'}"/>
    <#assign data=text?eval />
    开户行:${data.bank} 账号:${data.account}
    </body>
    </html>
    
  2. 测试类(基于Spring Boot)

    @Test
        public void testGenerateHtml() throws Exception {
            //定义配置类
            Configuration configuration = new Configuration(Configuration.getVersion());
            //定义模板路径
            String classpath = this.getClass().getResource("/").getPath();
            configuration.setDirectoryForTemplateLoading(new File(classpath + "/templates/"));
            //获取模板文件的内容
            Template template = configuration.getTemplate("test1.ftl");
            //定义数据模型
            Map map = getMap();
            //静态化
            String content = FreeMarkerTemplateUtils.processTemplateIntoString(template, map);
    //        System.out.println(content);
            InputStream inputStream = IOUtils.toInputStream(content);
            FileOutputStream outputStream = new FileOutputStream(new File("E:\\可开采文件\\传智播放器(Windows)\\加密\\学成在线\\day04 页面静态化\\视频\\a.html"));
            //输出文件
            IOUtils.copy(inputStream, outputStream);
            inputStream.close();
            outputStream.close();
        }
    

    测试结果得到指定文件,并且拥有静态化后的数据

使用模板字符串静态化
//基于模板文件的内容(字符串)生成html文件
    @Test
    public void testGenerateHtmlByString() throws IOException, TemplateException {
        //定义配置类
        Configuration configuration = new Configuration(Configuration.getVersion());
        //模板内容,这里测试时使用简单的字符串作为模板
        String templateString = "" +
                "<html>\n" +
                " <head></head>\n" +
                " <body>\n" +
                " 名称:${name}\n" +
                " </body>\n" +
                "</html>";
        //定义加载器
        StringTemplateLoader stringTemplateLoader = new StringTemplateLoader();
        stringTemplateLoader.putTemplate("template", templateString);
        configuration.setTemplateLoader(stringTemplateLoader);
        //获取模板
        Template template = configuration.getTemplate("template", "utf-8");
        //定义数据模型
        HashMap<String, Object> map = new HashMap<>();
        map.put("name", "你是个魔鬼吗?");
        //静态化
        String context = FreeMarkerTemplateUtils.processTemplateIntoString(template, map);
        System.out.println(context);
        InputStream inputStream = IOUtils.toInputStream(context);
        //输出文件
        FileOutputStream outputStream = new FileOutputStream(new File("E:\\可开采文件\\传智播放器(Windows)\\加密\\学成在线\\day04 页面静态化\\视频\\a.html"));
        IOUtils.copy(inputStream, outputStream);
    }
  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

嘿嘿嘿1212

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值