当前位置:   article > 正文

Freemarker常用内建函数

Freemarker常用内建函数

freemarker在线手册

内建函数语法格式: 变量+?+函数名称

获取集合大小和索引

  • size函数
  • index函数
public static void main(String[] args) throws IOException, TemplateException {
		//1.创建一个配置对象
		Configuration configuration=new Configuration(Configuration.getVersion());
		
		//2.设置模板所在的目录
		configuration.setDirectoryForTemplateLoading(new File("D:\\pinyougou\\freemarkerDemo\\src\\main\\resources"));
		
		//3.设置字符集
		configuration.setDefaultEncoding("utf-8");
		
		//4.获取模板对象
		Template template = configuration.getTemplate("test2.ftl");
		
		//5.创建数据模型(可以是对象,也可以是map)
		Map map=new HashMap();
		List goodsList=new ArrayList();
		Map goods1=new HashMap();
		goods1.put("name", "苹果");
		goods1.put("price", 5.8);
		Map goods2=new HashMap(
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小小林熬夜学编程/article/detail/658291
推荐阅读
相关标签
  

闽ICP备14008679号