freemark 全部资料 以及相关JAR包 还有具体代码实现
目录:
├─freemarker (1).doc 25.50KB
├─FreeMarker (1).ppt 631.00KB
├─freeMarker.doc 44.50KB
├─freemarker.docx 89.77KB
├─freemarker.ppt 135.00KB
├─Freemarker_-_几个比较实用的例子.txt 1.62KB
├─freemarker_中文参考手册.doc 195.50KB
├─FreeMarker在struts2.1.8_JAVA_web中的应用实例.txt 13.27KB
├─FreeMarker学习分享.ppt 494.50KB
├─freemarker学习文档.doc 216.50KB
├─Freemarker教程_中文版.pdf 297.22KB
├─FreeMarker标签使用.doc 35.00KB
├─freemarker根据模版生成文件使用例子.doc 104.50KB
└─freemarker语法带小例子.doc 83.50KB
教程:
第一步 配置
<result name="freemarker" type="freemarker">/duan.ftl</result>
第二部 action
/**
* freemarker.ftl查询用户用
* @return
*/
public String ecshopSelect()
{
// System.out.println(login.getUsername());
List list=ecshopBiz.doUSer();
request.setAttribute("userList", list);
goodsMap.put(1, "段");
goodsMap.put(2, "光");
goodsMap.put(3, "强");
request.setAttribute("map", goodsMap);
return "freemarker";
}
第三部biz
public List doUSer()
{
String sql="";
boolean b=false;
List list=null;
try {
sql="select id,username,password,email from ecshop_login";
list=baseDaoBySql.getList(sql, null, LoginEntity.class);
} catch (Exception e) {
e.printStackTrace();
}
return list;
}
第四 页面
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>My JSP 'freemarker.ftl' starting page</title>
</head>
<body>
<hr>
用户列表1<br>
<table>
<th>id</th> <th>用户名</th> <th>密码</th> <th>邮箱</th>
<#if userList?exists>
<#list userList as x>
<tr>
<td>${x.id}<td><td>${x.username}<td><td>${x.password}<td><td>${x.email}<td>
</tr>
</#list>
</#if>
</table>
<hr>
获取整数部分<br>
<#assign x=9>
${(x/2)?int}
${userList?size}
<hr>
<select>
<#list map?keys as testKey>
<option value="${testKey}">
${map.get(testKey)}
</option><br>
</#list>
</select>
<hr>
<select>
<#list map.keySet() as testKey>
<option value="${testKey}">
${map.get(testKey)}
</option><br>
</#list>
</select>
</body>
</html>