Freemarker

Freemarker

一、简介

FreeMarker是用Java编写的模板引擎,基于模板来生成文本输出。FreeMarker与Web容器无关,即在Web运行时,它并不知道Servlet或HTTP。它不仅可以用作表现层的实现技术,而且还可以用于生成XML,JSP或Java等。企业中主要用它做静态页面

二、使用

Freemarker
1、把Freemarker的jar包添加到工程中

<artifactId>freemarker</artifactId>

2、建立模板:hello.ftl:${hello}
3、使用

//创建Configuration对象。参数就是freemarker的版本号。
Configuration configuration = new Configuration(Configuration.getVersion());
//设置模板文件所在的路径。
configuration.setDirectoryForTemplateLoading(new File("D:/…/e3-item-web/src/main/webapp/WEB-INF/ftl"));
//设置模板文件使用的字符集
configuration.setDefaultEncoding("utf-8");
//加载一个模板,创建一个模板对象。
Template template = configuration.getTemplate("hello.ftl");
//创建一个模板使用的数据集,可以是pojo也可以是map。一般是MapMap dataModel = new HashMap<>();
//向数据集中添加数据
dataModel.put("hello", "this is my first freemarker test.");
//创建一个Writer对象,一般创建一FileWriter对象,指定生成的文件名。
Writer out = new FileWriter(new File("D:/temp/term197/out/hello.html"));
//调用模板对象的process方法输出文件。
template.process(dataModel, out);
//关闭流。
out.close();

三、语法

1、Map中的key:

${key}

2、Pojo属性:

${key.property}

3、集合:

<#list studentList as student>
    ${student.id}/${studnet.name}
    ${student_index}//下标
</#list>

4、判断:

<#if student_index % 2 == 0>
<#else>
</#if>

5、日期格式化:

${myDate?date}${myDate?time}${myDate?datetime}${myDate?string(“yyyy-MM-dd”)}

6、NULL:

${myval!}${myval!”myval为null”}
<#if myval??>
<#else>
</#if>

7、include

<#include “hello.ftl”>

四、整合Spring

1、引入资源文件

<artifactId>spring-context-support</artifactId>
<artifactId>freemarker</artifactId>

2、配置文件

<bean id="xxx" class="org.springframework.web.servlet.view.freemarker.FreeMarkerConfigurer">
    <property name="templateLoaderPath" value="/WEB-INF/ftl/" />
    <property name="defaultEncoding" value="UTF-8" />
</bean>

3、测试

//从freeMarkerConfigurer对象中获得Configuration对象。
Configuration configuration = freeMarkerConfigurer.getConfiguration();
//使用Configuration对象获得Template对象。
Template template = configuration.getTemplate("hello.ftl");
//创建数据集
Map dataModel = new HashMap<>();
dataModel.put("hello", "1000");
//创建输出文件的Writer对象。
Writer out = new FileWriter(new File("D:/temp/term197/out/spring-freemarker.html"));
//调用模板对象的process方法,生成文件。
template.process(dataModel, out);
//关闭流。
out.close();
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值