亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

如何實現java遞歸 處理權限管理菜單樹或分類

發布時間:2020-08-22 07:25:40 來源:腳本之家 閱讀:280 作者:低調的小白 欄目:編程語言

這篇文章主要介紹了如何實現java遞歸 處理權限管理菜單樹或分類,文中通過示例代碼介紹的非常詳細,對大家的學習或者工作具有一定的參考學習價值,需要的朋友可以參考下

1.數據庫表設計

如何實現java遞歸 處理權限管理菜單樹或分類

2.實體類設計

package com.ieou.capsule.dto.SystemPermissions;
import java.util.List;
/**
 * 功能菜單類
 */
public class SystemPermissionsTree {
	private String functionCode;
	//菜單碼
	private String parentFunctionCode;
	//父級菜單碼
	private String functionName;
	//菜單名
	private Boolean flag;
	// true:選中  false:未選中
	private List<SystemPermissionsTree> childrenList;
	public String getFunctionCode() {
		return functionCode;
	}
	public void setFunctionCode(String functionCode) {
		this.functionCode = functionCode;
	}
	public String getParentFunctionCode() {
		return parentFunctionCode;
	}
	public void setParentFunctionCode(String parentFunctionCode) {
		this.parentFunctionCode = parentFunctionCode;
	}
	public String getFunctionName() {
		return functionName;
	}
	public void setFunctionName(String functionName) {
		this.functionName = functionName;
	}
	public Boolean getFlag() {
		return flag;
	}
	public void setFlag(Boolean flag) {
		this.flag = flag;
	}
	public List<SystemPermissionsTree> getChildrenList() {
		return childrenList;
	}
	public void setChildrenList(List<SystemPermissionsTree> childrenList) {
		this.childrenList = childrenList;
	}
}

3.遞歸工具類

package com.ieou.capsule.util;
import com.ieou.capsule.dto.SystemPermissions.SystemPermissionsTree;
import java.util.ArrayList;
import java.util.List;
public class TreeUtil {
	/**
   * 作者:一沐楓一
   * 來源:CSDN
   * 原文:https://blog.csdn.net/gxgl8811/article/details/72803833
   * 版權聲明:本文為博主原創文章,轉載請附上博文鏈接!
   */
	public static List<SystemPermissionsTree> getTreeList(List<SystemPermissionsTree> entityList) {
		List<SystemPermissionsTree> resultList = new ArrayList<>();
		//獲取頂層元素集合
		String parentCode;
		for (SystemPermissionsTree entity : entityList) {
			parentCode = entity.getParentFunctionCode();
			//頂層元素的parentCode==null或者為0
			if (parentCode == null || "0".equals(parentCode)) {
				resultList.add(entity);
			}
		}
		//獲取每個頂層元素的子數據集合
		for (SystemPermissionsTree entity : resultList) {
			entity.setChildrenList(getSubList(entity.getFunctionCode(), entityList));
		}
		return resultList;
	}
	/**
   * 獲取子數據集合
   *
   * @param id
   * @param entityList
   * @return
   * @author jianda
   * @date 2017年5月29日
   */
	private static List<SystemPermissionsTree> getSubList(String id, List<SystemPermissionsTree> entityList) {
		List<SystemPermissionsTree> childList = new ArrayList<>();
		String parentId;
		//子集的直接子對象
		for (SystemPermissionsTree entity : entityList) {
			parentId = entity.getParentFunctionCode();
			if (id.equals(parentId)) {
				childList.add(entity);
			}
		}
		//子集的間接子對象
		for (SystemPermissionsTree entity : childList) {
			entity.setChildrenList(getSubList(entity.getFunctionCode(), entityList));
		}
		//遞歸退出條件
		if (childList.size() == 0) {
			return null;
		}
		return childList;
	}
}

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

安图县| 绥江县| 长葛市| 平罗县| 农安县| 五台县| 永顺县| 哈尔滨市| 宜兰市| 岳阳市| 阳曲县| 丰宁| 依安县| 遂宁市| 张北县| 韶山市| 吴旗县| 麦盖提县| 安庆市| 鹰潭市| 宣汉县| 米林县| 班戈县| 赫章县| 林州市| 桐城市| 威宁| 绥江县| 金山区| 望都县| 昆明市| 山东省| 宁蒗| 新建县| 乐都县| 娄底市| 土默特右旗| 容城县| 张家界市| 当雄县| 赤城县|