maven打jar包并将依赖包打进去
Posted 盲目的拾荒者
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了maven打jar包并将依赖包打进去相关的知识,希望对你有一定的参考价值。
在使用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,分布式,微服务。
以上是关于maven打jar包并将依赖包打进去的主要内容,如果未能解决你的问题,请参考以下文章