码迷,mamicode.com
首页 > 其他好文 > 详细

FreeMarker过时的方法 new Configuration()

时间:2020-01-13 11:05:11      阅读:269      评论:0      收藏:0      [点我收藏+]

标签:url   技术   ali   pre   loading   center   res   template   资源   

在使用FreeMarker创建Configuration对象时,提示过期

    //freemarker包
    Configuration configuration = new Configuration()~;

查看源码发现,通过此方式获得一个Configuration实例,需要一个版本信息

就是说现在你要获得一个 Configuration实例需要一个版本实例,目前我的版本是2.3.23

Use Configuration(Version) instead.Version是一个静态字段
Configuration.VERSION_2_3_23 是一个静态字段

            //freemarker包
            Configuration configuration = new Configuration(Configuration.VERSION_2_3_23);
            //设置模板加载文件夹
            configuration.setDirectoryForTemplateLoading(new File(ResourceUtils.getURL("classpath:").getPath() + "template"));
            //设置模板
            Template template = configuration.getTemplate("mail.ftl");

微信公众号

技术图片
JAVA程序猿成长之路
分享资源,记录程序猿成长点滴。专注于Java,Spring,SpringBoot,SpringCloud,分布式,微服务。

FreeMarker过时的方法 new Configuration()

标签:url   技术   ali   pre   loading   center   res   template   资源   

原文地址:https://www.cnblogs.com/niugang0920/p/12185870.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!