1. freemarker 配置 模板加载路径
application.yml
# freemarker
freemarker:
suffix: .ftl
content-type: text/html
charset: UTF-8
template-loader-path: classpath:/views/
settings:
classic_compatible: true
文件目录如下
要求 :子目录(/views/user)中的password.ftl加载父目录的common.ftl
报错 :Template not found for name "../common.ftl"
解决:用绝对路径。
<#include "*/common.ftl">
*/common.ftl 会从当前文件的父目录开始遍历直到找到common.ftl