在Java代码中使用Configuration对象的setSharedVariable()方法即可实现共享变量。
public static void main(String[] args) throws Exception {
Map<String, Object> map = new HashMap<>();
map.put("name", "xiaoming");
Configuration cfg = FreeMarkers.defaultConfiguration();
cfg.setSharedVariable("share", "共享变量");
cfg.setSharedVaribles(map);
System.out.println(FreeMarkers.fileToStr("test1.ftl", map));
System.out.println(FreeMarkers.fileToStr("test2.ftl", map));
}
SpringMVC配置见"SpringMVC整合"
setNumberFormat("0.####");
setDateFormat("yyyy-MM-dd");
setTimeFormat("HH:mm:ss");
setDateTimeFormat("yyyy-MM-dd HH:mm:ss");
setBooleanFormat("true,false");
setWhitespaceStripping(true);
setClassicCompatible(true);
setDirectoryForTemplateLoading(File dir):设置模板存放路径——文件路径;
setServletContextForTemplateLoading(Object sctxt, String path):设置模板存放路径——Servlet上下文;
setClassForTemplateLoading(Class clazz, String pathPrefix):设置模板存放路径——类路径;
setTemplateUpdateDelay(int delay):设置模板文件更新时间(毫秒);
setStrictSyntaxMode(boolean b):开启/关闭严格的语法,默认为true;
setWhitespaceStripping(boolean b):开启/关闭空白移除,默认为true;
setTagSyntax(int tagSyntax):设置ftl标签的类型;
?AUTO_DETECT_TAG_SYNTAX: 可以自定义格式,系统会选择第一个标签作为参照;
?ANGLE_BRACKET_TAG_SYNTAX: 使用尖括号;
?SQUARE_BRACKET_TAG_SYNTAX: 使用方括号;
setSharedVariable(String name, TemplateModel tm):设置共享变量;
setSharedVariable(String name, Object obj):设置共享变量;
setAllSharedVariables(TemplateHashModelEx hash):设置共享变量;
clearSharedVariables():清除共享变量;
clearTemplateCache():清除缓存;
setSetting(String key, String value):为freemarker做配置属性的入口;
getTemplate:一系列获取Template的方法;
在文件中使用此标签做全局的设置
// 用来设置整个系统的一个环境
locale // zh_CN 中文环境
number_format
boolean_format
date_format
time_format
datetime_format
time_zone
classic_compatible
// 例1:
<#setting number_format="percent"/> // 设置数字默认输出方式('percent',百分比)
// 例2:
// 假如当前是匈牙利的设置,然后修改成美国
${1.2} // 输出1,2
<#setting locale="en_US">
${1.2} // 输出1.2,因为匈牙利是采用", "作为十进制的分隔符,美国是用". "
版权说明 : 本文为转载文章, 版权归原作者所有 版权申明
原文链接 : https://blog.csdn.net/chen413203144/article/details/79504683
内容来源于网络,如有侵权,请联系作者删除!