一个简单的freemarker应用示例

简介: 下面的代码是以前一个项目中的一段代码改过来的。     String path = context.getRealPath("/template"); String filePath = context.

下面的代码是以前一个项目中的一段代码改过来的。

 

 

String path = context.getRealPath("/template");
		String filePath = context.getRealPath("/");
		File dir = new File(path);
		Configuration config = new Configuration();
		try {
			config.setDirectoryForTemplateLoading(dir);
			FileWriter out = new FileWriter(new File(filePath,"head.shtml"));
			Map<String,Object> root = new HashMap<String,Object>();
			root.put("modules", modules);
			Template template = config.getTemplate("test.ftl");
			template.process(root, out);
		} catch (IOException e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
		} catch (TemplateException e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
		}

 

为了使其完整,上述的模版可以是这样:

 

<#list modules as module>
    		<div style="float:left;margin-left: 10px;">
    		    		<a href="newsDetailAction?moduleId=${module.id}">
    		    		${module.name}</a>
    		</div>
</#list>

  这样就可以利用该模版生成一个文件了

目录
相关文章
freemarker中对null值的处理
官方文档 ​​​​​​FreeMarker 中文官方参考手册 (foofun.cn)
thymeleaf 的 th:each 标签示例
thymeleaf 的 th:each 标签示例
133 0
|
前端开发 Java
Freemarker - 基础篇(上)
Freemarker - 基础篇(上)
359 0
Freemarker - 基础篇(上)
|
前端开发
Freemarker - 基础篇(下)
Freemarker - 基础篇(下)
199 0
Freemarker - 基础篇(下)
|
索引
thymeleaf的th:each常见用法
thymeleaf的th:each常见用法 一.th:eath迭代集合用法: 是否选中 编号 姓名 年龄 编号 姓名 年龄 二.迭代下标变量用法: 状态变量定义在一个th:每个属性和包含以下数据: 1.当前迭代索引,从0开始。
4200 0
|
Java
FreeMarker 对null值的处理技巧
以下引用官方描述:  The FreeMarker template language doesn't know the Java language null at all. It doesn't have null keyword, and it can't test if something is null or not.    1.判断是否存在,通过exists关键字或者"??"运算符。
1110 0
|
Java Spring 前端开发
Spring Boot + JPA + Freemarker 实现后端分页 完整示例
Spring Boot + JPA + Freemarker 实现后端分页 完整示例 界面效果 螢幕快照 2017-07-28 15.34.42.
1364 0