FreeMarker

来源:互联网 发布:项目进度跟进软件 编辑:程序博客网 时间:2024/06/05 15:12

FreeMarker

是一个基于模版生成文本输出的模版引擎,他是由Java编写,它与Web容器无关,在Web运行时,不需要知道是http还是Servlet,它不仅用作表现层的实现技术,还可以用在生成XML,JSP或者Java等。

POM

    <dependency>    <groupId>org.freemarker</groupId>    <artifactId>freemarker</artifactId>    <version>2.3.23</version>    </dependency>

使用步骤

    第一步:创建一个Configuration对象,直接new一个对象。构造方法的参数就是freemarker对于的版本号。    第二步:设置模板文件所在的路径。    第三步:设置模板文件使用的字符集。一般就是utf-8.    第四步:加载一个模板,创建一个模板对象。    第五步:创建一个模板使用的数据集,可以是pojo也可以是map。一般是Map。    第六步:创建一个Writer对象,一般创建一FileWriter对象,指定生成的文件名。    第七步:调用模板对象的process方法输出文件。    第八步:关闭流。    

Demo

    模板:        ${hello}        public void genFile() throws Exception {        // 第一步:创建一个Configuration对象,直接new一个对象。构造方法的参数就是freemarker对于的版本号。        Configuration configuration = new Configuration(Configuration.getVersion());        // 第二步:设置模板文件所在的路径。        configuration.setDirectoryForTemplateLoading(new File("D:/workspaces-itcast/term197/e3-item-web/src/main/webapp/WEB-INF/ftl"));        // 第三步:设置模板文件使用的字符集。一般就是utf-8.        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();    }

访问Map的Key

// 第五步:创建一个模板使用的数据集,可以是pojo也可以是map。一般是MapMap dataModel = new HashMap<>();        //向数据集中添加数据        dataModel.put("hello", "this is my first freemarker test.");        ----------        ${hello}       这里写代码片

访问POJO

`// 第五步:创建一个模板使用的数据集,可以是pojo也可以是map。一般是Map。    Map dataModel = new HashMap<>();    //向数据集中添加数据    dataModel.put("pojo", new POJO());${pojo.name}`

访问List

`// 第五步:创建一个模板使用的数据集,可以是pojo也可以是map。一般是Map。    Map dataModel = new HashMap<>();    //向数据集中添加数据    dataModel.put("list", new ArrayList().add(new PoJO()));    ----------    <#list list as lis>        ${lis.name}    </#list>`

判断

    // 第五步:创建一个模板使用的数据集,可以是pojo也可以是map。一般是Map。    Map dataModel = new HashMap<>();    //向数据集中添加数据    dataModel.put("list", new ArrayList().add(new PoJO()));    ----------    <#list list as lis>    <#if lis_index % 2 == 0>  <!--_index为序号 -->        <tr bgcolor="red">    <#else >        <tr bgcolor="blue">    <#/if>        ${lis.name}        </tr>    </#list>    `

时间日期

`       当前日期${date?date}    当前时间  ${date?time}    当前日期和时间 ${date?datetime}       自定义日期格式:${date?string("yyyy/MM/dd HH:mm:ss")}`   

NULL值的处理

`这里写代码片`/ 第五步:创建一个模板使用的数据集,可以是pojo也可以是map。一般是Map。    Map dataModel = new HashMap<>();    //向数据集中添加数据    dataModel.put("null", null);    ---------- ${val!""} ${val!"为null"}    <#if val??>        为空    <#else >        不为空    <#/if>`

Include

`    <#include "index.jsp">`

整合Spring

`<bean id="freemarkerConfig"    class="org.springframework.web.servlet.view.freemarker.FreeMarkerConfigurer">    <property name="templateLoaderPath" value="/WEB-INF/ftl/" />    <property name="defaultEncoding" value="UTF-8" /></bean>----------@Autowiredprivate FreeMarkerConfigurer freeMarkerConfigurer;public String genHtml()throws Exception {    // 1、从spring容器中获得FreeMarkerConfigurer对象。    // 2、从FreeMarkerConfigurer对象中获得Configuration对象。    Configuration configuration = freeMarkerConfigurer.getConfiguration();    //  3、使用Configuration对象获得Template对象。    Template template = configuration.getTemplate("hello.ftl");    // 4、创建数据集    Map dataModel = new HashMap<>();    dataModel.put("hello", "1000");    // 5、创建输出文件的Writer对象。    Writer out = new FileWriter(new File("D:/temp/term197/out/spring-freemarker.html"));    // 6、调用模板对象的process方法,生成文件。    template.process(dataModel, out);    // 7、关闭流。    out.close();    return "OK";}`