freemarker模板动态生成word文档

本文使用例子

  1. 单插表格
  2. list表格
  3. checkbox

环境

  1. SpringBoot:2.1.7.RELEASE
  2. freemarker 2.1.9
  3. IDEA:2020.1.1
  4. WPS:11.1

配置

一、maven添加freemarker模板引擎

        
            org.springframework.boot
            spring-boot-starter-freemarker
        

二、application.yml配置freemarker

  #    设置freemarker
  freemarker:
    allow-request-override: false
    #    开发过程建议关闭缓存
    cache: true
    check-template-location: false
    charset: UTF-8
    content-type: text/html; charset=utf-8
    expose-request-attributes: false
    expose-session-attributes: false
    expose-spring-macro-helpers: false
    request-context-attribute:
    # 默认后缀就是.ftl
    suffix: .ftl
    template-loader-path: classPath:/templates/code/    

正文

一.word文档

1.单插表格
freemarker模板动态生成word文档_第1张图片

  1. list表格
    freemarker模板动态生成word文档_第2张图片
    3.checkbox
    在这里插入图片描述

二、另存为xml文件

freemarker模板动态生成word文档_第3张图片
三、修改文件后缀为 .ftl 并添加到IDEA中,点击Code -> Reformat Code格式化代码。

1.变量有可能会分离,要手动调整,不知道怎么调整的可手动查看ftl文件中其他正确的地方是怎么写的。

  • 变量分离情况

freemarker模板动态生成word文档_第4张图片

  • 调整后

freemarker模板动态生成word文档_第5张图片
2、单插表格变量
freemarker模板动态生成word文档_第6张图片
3.循环list表格,在下图 2 的位置加入循环语句,并把${id}改成 ${user.id}
在这里插入图片描述在这里插入图片描述
在这里插入图片描述
4.checkbox,在后端添加一个控制checkbox的key-value,key为check,value为true/false
freemarker模板动态生成word文档_第7张图片
freemarker模板动态生成word文档_第8张图片
四、Controller代码(一份代码可执行以上3种格式)

    @PostMapping("user/doc")
    @ResponseBody
    @ApiOperation(value="导出用户doc", httpMethod = "POST",produces="application/json",notes = "导出用户doc")
    public String exportDoc(String data) throws  IOException{
        Configuration configuration = new Configuration();
        configuration.setDefaultEncoding("utf-8");
        configuration.setClassForTemplateLoading(this.getClass(), "/templates/code");
        Template template = configuration.getTemplate("test.ftl");
        //data为Json格式
        Map<String, String> dataMap = (Map<String, String>)JSON.parse(data);
        File outFile = new File("test.doc");
        Writer out = new BufferedWriter(new OutputStreamWriter(new FileOutputStream(outFile),"UTF-8"));
        try {
            template.process(dataMap,out);
            out.flush();
            out.close();
        } catch (TemplateException e) {
            e.printStackTrace();
        }
        return "导出成功";
    }

你可能感兴趣的:(Java踩坑)