论坛首页 Java企业应用论坛

FreeMarker实现递归的方法

浏览 6959 次
精华帖 (0) :: 良好帖 (0) :: 新手帖 (0) :: 隐藏帖 (0)
作者 正文
   发表时间:2008-12-09  
一、在页面编写要显示的FreeMarker标签
  例如:我要显示类似于树型的结构如:
1.root
  2.child
    3.child
4.root
  5.child
    6.child

结合hibrenate的方法,就是假如有一个分类表,一个分类下又有子分类,注意分类是可以无限的扩展的,在数据库表的设计中我们把分类表的关联设计为自关联即自己关联自己


然后我们要在数据库中找出所有的根分类(root),在显示页面编写以下代码:
<#assign n=0/>这里定义一个变量是用来记数显示编号的
<#list rootlist?if_exists as root>
<#assign n=n+1/>
         这里表示要显示的内容${n}${root.id}
<#if root.child?exists>//判断是否有子分类
   <#assign root=root.child/>//如果有子分类就把子分类的set集合赋值给root,root是一个在if语句块中定义的一个变量
   <#assign n=n/>
            <#include "filename.ftl">//filename.ftl是一个自己定义的一个模板文件,注意该文件是存放在跟当前页面文件同在一个目录下的.<#include "*/footer.ftl">表示当前目录下以及所有父目录下的文件
</#if>
</#list>

因为利用了hibranate关联性所有每一个分类都有对应的一个关联它的子分类的set集合

二、最后定义模板文件(ftl)filename.ftl如下:

<#list rootlist?if_exists as root>
<#assign n=n+1/>
         这里表示要显示的内容${n}${root.id}
<#if root.child?exists>
   <#assign root=root.child/>
   <#assign n=n/>
            <#include "filename.ftl">
</#if>
</#list>

其实这个文件的内容是跟以上定义的FreeMarker标签是一样的
ok 这样搞定了!

   发表时间:2009-01-06   最后修改:2009-01-06
使用宏来做递归更好:

<#macro buildNode child parent>
    <#if child?? && child?size gt 0>
        <#list child as t>
            //to build tree node
            <@buildNode child=t.child parent=t/>
        </#list>
    </#if>
</#macro>

调用这个宏: (假设已构造一个自嵌套结构的对象data.treeRoot)

<@buildNode child=data.treeRoot.child parent=data.treeRoot/>
0 请登录后投票
   发表时间:2009-02-10  
bromon 写道
使用宏来做递归更好:

<#macro buildNode child parent>
    <#if child?? && child?size gt 0>
        <#list child as t>
            //to build tree node
            <@buildNode child=t.child parent=t/>
        </#list>
    </#if>
</#macro>

调用这个宏: (假设已构造一个自嵌套结构的对象data.treeRoot)

<@buildNode child=data.treeRoot.child parent=data.treeRoot/>

宏的确要好得多,刚好也要用到这个递归的使用
0 请登录后投票
论坛首页 Java企业应用版

跳转论坛:
Global site tag (gtag.js) - Google Analytics