FreeMarker是一款模板引擎: 即一种基于模板和要改变的数据, 并用来生成输出文本(HTML网页、电子邮件、配置文件、源代码等)的通用工具。 它不是面向最终用户的,而是一个Java类库,是一款程序员可以嵌入他们所开发产品的组件。

springboot yml文件配置

freemarker:
allow-request-override: false
cache: false ##是否生成缓存,生成环境建议开启(默认为true)
check-template-location: true
charset: UTF-8 ##编码
content-type: text/html; charset=utf-8 ##content-type类型(默认为test/html)
expose-request-attributes: false ## 设定所有request的属性在merge到模板的时候,是否要都添加到model中(默认为false)
expose-session-attributes: false ##设定所有HttpSession的属性在merge到模板的时候,是否要都添加到model中.(默认为false)
expose-context-attributes: request ##RequestContext属性的名称(默认为-)
expose-spring-macro-helpers: false
suffix: .html ##模板后缀(默认为.ftl)
template-loader-path: classpath:/templates ##模版存放路径(默认为 classpath:/templates/)
View Code
02-10 15:20