Springboot 工程读取 resources 目录下的 freemarker 模板

一开始使用的是 FileTemplateLoader ,本地 IDE 中运行没有问题,但是打包成 jar 包运行就报错了,因为模板文件在 jar 包中。下面是报错内容:

java.io.FileNotFoundException: class path resource [templates] cannot be resolved to absolute file path because it does not reside in the file system

之后看了 TemplateLoader 的所有实现,发现了 SpringTemplateLoader,这是 Spring 提供的实现,使用它就没问题了。下面是代码示例:

@Autowired
private ResourceLoader resourceLoader;

...

// 模板存放在 resources 下的 templates 目录下
SpringTemplateLoader templateLoader = new SpringTemplateLoader(resourceLoader, "classpath:templates");
Configuration configuration = new Configuration(new Version("2.3.31"));
configuration.setTemplateLoader(templateLoader);
Template template = configuration.getTemplate("model.ftl");

还有一点需要注意,传入 Template 的 Map 不能使用 name 为 id 的 key,在模板内读取 id 的值时读到的是和包名类似的值,而不是传入的值。用其它比如:id_ 等替代即可。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值