Freemarker
一、简介
FreeMarker是用Java编写的模板引擎,基于模板来生成文本输出。FreeMarker与Web容器无关,即在Web运行时,它并不知道Servlet或HTTP。它不仅可以用作表现层的实现技术,而且还可以用于生成XML,JSP或Java等。企业中主要用它做静态页面
二、使用
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。一般是Map。
Map 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();