首页 > 编程语言 > 详细

Java模板引擎 - FreeMarker

时间:2020-02-04 21:07:35      阅读:66      评论:0      收藏:0      [点我收藏+]

http://freemarker.foofun.cn/

https://freemarker.apache.org/

https://mvnrepository.com/artifact/org.freemarker/freemarker

技术分享图片

 

常用代码

    @Test
    public void deptemp() throws TemplateNotFoundException, MalformedTemplateNameException, ParseException, IOException, TemplateException {
        
        String templateName = "deptemp.ftl";
        String templatePath = "d:\\template";
        String fileOutPath = "d:\\deptemp.txt";
        
        Map<String, Object> map = initDatamydeptemp();
        
        Configuration config = new Configuration();
        config.setDefaultEncoding("UTF-8");
        config.setDirectoryForTemplateLoading(new File(templatePath));
        Template template = config.getTemplate(templateName);
        template.process(map, new FileWriter(fileOutPath));
        
    }

    private Map<String, Object> initDatamydeptemp() {
        
        List<Emp> emps = new ArrayList<>();
        Emp emp1 = new Emp("1","liubei");
        Emp emp2 = new Emp("2","guanyu");
        emps.add(emp1);
        emps.add(emp2);
        
        List<Dept> depts = new ArrayList<>();
        Dept dept1 = new Dept("1","jishubu",emps);
        Dept dept2 = new Dept("2","caiwubu",emps);
        depts.add(dept1);
        depts.add(dept2);
        
        //创建如下的测试数据
        Map<String, Object> map = new HashMap<String, Object>();
        //列表
        map.put("depts", depts);
        map.put("id", "001");
        return map;
    }

 

常用标签

1. 单值

<#-- 取单值 -->
${id}

2. 集合

<#-- 取集合 -->
<#list depts as dept>
    部门ID:${dept.id} 
    部门名称:${dept.name} 
    <#-- 取复合对象 -->
    <#list dept.emps as emp>
        <#-- if判断 -->
        <#if (emp.name==‘liubei‘)>
            员工ID:${emp.id} 
            员工名称:${emp.name} 
        </#if>
    </#list>
</#list>

Java模板引擎 - FreeMarker

原文:https://www.cnblogs.com/renguanyu/p/12260557.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!