使用hibernate實現樹形結構無限級分類

在系統中,常常會用到無限級的樹形結構分類,如組織機構管理、商品/地區分類等等。在之前的一個貼子:http://www.iteye.com/topic/26987「複雜商品分類的表如何創建?」中,討論過樹形無級分類的實現方法。

通常無外採用兩種方式,
  一是相似struts-menu(http://struts-menu.sourceforge.net)的XML文件管理方式,配置起來比較方便,但很難與系統中其它應用數據集成;
  二是使用數據庫存儲,定義父子關係。

在咱們如今開發的一個產品中,使用hibernate實現了一套樹形結構的處理方法,實現了樹的基本操做,上溯、下溯、子節點的添加/移除和遞歸查找、對象關聯等。簡介以下:
適用範圍,具備樹形特徵的全部對象,如樹形菜單、組織結構、信息分類、論壇主貼與回覆等。
完整源碼下載(內置了hsql數據庫及測試數據,正式使用時請將war置於APPSERVER的 webapps目錄下,修改解包後的WEB-INF/classes/hibernate.cfg.xml,編輯其中hsqldb的物理路徑。如 jdbc:hsqldb:file:c:\tomcat5\webapps\treetest\db\test)見附件,運行 http://ServerName:ServerPort/treetest/menumanage.do。
樹形結構顯示,使用的是xtree。爲便於編輯維護,本身寫了一個左鍵彈出菜單(xtree的右鍵事件沒法更改),進行節點的添加、修改、刪除、轉移操做。(PS:這套維護界面是徹底跨瀏覽器的,有興趣的不妨一試)
關聯關係
可使用objects對象來配置關聯關係,實現多對多/一對多等關係。在BaseTree中,getObjects()方法是abstract 的,能夠根據須要本身定義。如論壇分類與每一個分類所對應的貼子相關聯,商品分類與商品編碼相關聯等,能夠根據須要來處理hbm文件。若須要多項關聯,亦可 擴展。如菜單與用戶、部門、崗位分別進行關聯
hibernate2.1.7的一個bug,在這個測試源碼的dao中,TreeManager的getRoots方法,
session.createQuery(" from " + cls.getName() + " where enabled=? and parent_id is null order by id");
在hibernate2中必須像寫成parent_id is null,才能正確運行,這應該是2.1.7中的一個bug。而hibernate3中,可使用parent is null的hsql。
主要代碼
繼承關係以下,假如要實現國家分類:
CountryTree extends BaseTree(abstract class)
          BaseTree(abstract class) implements Tree(interface)
爲節省版面,下面代碼去掉了javadoc
Tree.java java

Java代碼   收藏代碼
  1. /** 
  2.  * 實現了樹的基本操做,上溯、下溯、子節點的添加/移除和遞歸查找、對象關聯等 
  3.  */  
  4. package test.testtree.base;  
  5. import java.util.Set;  
  6.   
  7. public interface Tree {   
  8.     public String getCode();  
  9.     public String getName();  
  10.     public String getDescription();  
  11.     public Tree getParent();  
  12.     public Set getParents();  
  13.     public boolean isRoot();  
  14.     public boolean isLeaf();  
  15.     public boolean isParentOf(Tree tree);  
  16.     public boolean isChildOf(Tree tree);  
  17.     public void addChild(Tree tree);  
  18.     public void rmChild(Tree tree);  
  19.     public Set getAllChildren();  
  20.     public Set getChildren();  
  21.     public Set getAllLeaves();  
  22.     public void addObject(Object obj);  
  23.     public void rmObject(Object obj);  
  24.     public Set getObjects();  
  25.     public Long getId();  
  26. }  



BaseTree.java web

Java代碼   收藏代碼
    1. package test.testtree.base;  
    2. import java.util.*;  
    3.   
    4. public abstract class BaseTree extends BasePojo implements Tree{      
    5.     protected String code;      
    6.     protected String name;      
    7.     protected String description;          
    8.     protected BaseTree parent;     
    9.     protected Set children = new HashSet();      
    10.     protected Set objects = new HashSet();      
    11.     public void setCode(String code) {  
    12.         this.code = code;  
    13.     }      
    14.     abstract public String getCode();  
    15.     public void setName(String name) {  
    16.         this.name = name;  
    17.     }      
    18.     abstract public String getName();      
    19.     public void setDescription(String description) {  
    20.         this.description = description;  
    21.     }  
    22.     abstract public String getDescription();  
    23.     abstract public Tree getParent();          
    24.     public boolean isRoot() {  
    25.         return (getParent()==null);  
    26.     }      
    27.     public boolean isLeaf() {  
    28.         return (this.getChildren().size()==0);  
    29.     }      
    30.     public boolean isParentOf(Tree tree) {  
    31.         if (tree==null || ((BaseTree) tree).equals(this)) {  
    32.             /*若是對方爲空*/  
    33.             return false;  
    34.         }else if(this.isLeaf()){  
    35.             /*若是本身爲葉子,則返回FALSE*/  
    36.             return false;  
    37.         }else if(tree.isRoot()){  
    38.             /*若是對方爲根,返回FALSE*/  
    39.             return false;  
    40.         }else{  
    41.             BaseTree bt = (BaseTree) (tree.getParent());  
    42.             if (this.equals(bt)){  
    43.                 /*若是對方的父節點是本身,則返回TRUE*/  
    44.                 return true;  
    45.             }else{  
    46.                 /*判斷對方的父節點是不是本身的孩子,進行遞歸*/  
    47.                 return isParentOf(bt);  
    48.             }  
    49.         }  
    50.     }  
    51.     public boolean isChildOf(Tree tree) {  
    52.         return (tree.isParentOf(this));  
    53.     }  
    54.     public void addChild(Tree tree) {  
    55.         children.add(tree);  
    56.     }  
    57.     public void rmChild(Tree tree) {  
    58.         children.remove(tree);  
    59.         ((BaseTree) tree).setParent(null);  
    60.     }  
    61.     public Set getAllLeaves() {  
    62.         Set set_old = this.getAllChildren();  
    63.         Set set = new HashSet();  
    64.         set.addAll(set_old);  
    65.         Iterator itr = set_old.iterator();  
    66.         while(itr.hasNext()){  
    67.             BaseTree bt = (BaseTree) itr.next();  
    68.             if (! bt.isLeaf()){  
    69.                 set.remove(bt);  
    70.             }  
    71.         }  
    72.         return set;  
    73.     }  
    74.    public Set getParents(){  
    75.         Set parents = new HashSet();          
    76.         Tree p = this.getParent();  
    77.         if(p!=null){  
    78.             parents.add(p);  
    79.             parents.addAll(p.getParents());  
    80.         }  
    81.         return parents;  
    82.     }  
    83.   
    84.     public Set getAllChildren() {  
    85.         Set set = new HashSet();  
    86.         Stack stack = new Stack();  
    87.         stack.push(this);  
    88.         while(!stack.empty()){  
    89.             BaseTree bt = (BaseTree) stack.pop();  
    90.             set.add(bt);  
    91.             Iterator itr = bt.getChildren().iterator();  
    92.             while(itr.hasNext()){  
    93.                 BaseTree btchild = (BaseTree) itr.next();  
    94.                 stack.push(btchild);  
    95.             }  
    96.         }  
    97.         set.remove(this);  
    98.         return set;  
    99.     }      
    100.     abstract public Set getChildren();  
    101.     public void addObject(Object obj) {  
    102.         objects.add(obj);  
    103.     }  
    104.     public void rmObject(Object obj) {  
    105.         objects.remove(obj);  
    106.     }  
    107.     abstract public Set getObjects();  
    108.     public void setParent(Tree parent) {  
    109.         this.parent = (BaseTree) parent;  
    110.     }  
    111.     public void setChildren(Set children) {  
    112.         this.children = children;  
    113.     }  
    114.     public void setObjects(Set objects) {  
    115.         this.objects = objects;  
    116.     }      
    117. }  
相關文章
相關標籤/搜索