记一次freemarker学习使用

1.创建配置实例:

        Configuration cfg = new Configuration(Configuration.VERSION_2_3_23);
        // 设置模版根路径
        try {
            cfg.setDirectoryForTemplateLoading(new File(path));
        } catch (IOException e) {
            LOGGER.error("创建freemark配置实例异常,异常信息:{}", e.getMessage(), e);
        }
        // 设置模板字符集
        cfg.setDefaultEncoding("UTF-8");
        // 设置异常显示方式
        cfg.setTemplateExceptionHandler(TemplateExceptionHandler.HTML_DEBUG_HANDLER);
        // 不显示任何异常信息
        cfg.setLogTemplateExceptions(false);
VERSION_2_3_23,VERSION_2_3_21等信息代表着使用的版本,也可以使用默认版本DEFAULT_INCOMPATIBLE_IMPROVEMENTS;

path需要使用/src/main样式相对路径,classpath:ftl格式路径不空指针;

TemplateExceptionHandler.HTML_DEBUG_HANDLER异常显示形式包括不抛出异常、在运行出抛出异常和形成一个显示异常的html文档三种形式,其他形式没有过多研究和关注;

注:创建配置实例动作不需要每次都创建一个,可进行统一管理

2.创建模板

try {
            if (!FileUtil.isExists(filePath)) {
                FileUtil.writeFile(filePath, "");
            }
            // 获取模板
            Template template = cfg.getTemplate(templateName);
            Writer writer = new OutputStreamWriter(new FileOutputStream(new File(filePath)));
            template.process(params, writer);
        } catch (TemplateException e) {
            LOGGER.error("模板数据替换异常,异常信息:{}", e.getMessage(), e);
        } catch (UnsupportedEncodingException e) {
            LOGGER.error("文件输出流异常,异常信息:{}", e.getMessage(), e);
        } catch (IOException e) {
            LOGGER.error("IO流异常,异常信息:{}", e.getMessage(), e);
        }

通过配置中心根据模板名称加载模板,创建一个输出流,输出流格式为各位的需要格式,最后一步为加载数据到模板中并将生成的文档信息通过输出到执行路径文件中。

详细信息见官网:https://freemarker.apache.org/docs/pgui_quickstart_createconfiguration.html    快速开始:getting started

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值