需求:
假如有几个一级菜单,一级菜单下面有几个二级菜单,二级菜单下又还有三级菜单。现在要求一级菜单里面的几个设置为无效,将不显示在前端。现在需要的是查询出一级菜单下面所有的菜单,包括二级,三级菜单
原则:
在菜单表中包括自己的id和父节点的parentId
代码:
public List<Map> getAllMappings(){
//从数据库查出需要设置为无效的一级菜单,每个Map包含id,parentId,name等字段
4 List<Map> notActiveMenus = (List<Map>)getMenuDao().search();
//初始化存储所有无效的菜单的List
List<String> notActiveIds = new ArrayList<String>();
//循环每一个一级菜单
for (Map notActiveMenu:notActiveMenus){
notActiveIds.add((String)notActiveMenu.get("id"));
//遍历下级目录
searchSubNotActiveMenu(notActiveIds, (String) notActiveMenu.get("id"));
}
//去重
List<String> temp = new ArrayList<String>();
Iterator<String> it = notActiveIds.iterator();
while(it.hasNext()){
String tempString = it.next();
if(temp.contains(tempString)){
it.remove();
}else {
temp.add(tempString);
}
} return notActiveIds;
} public void searchSubNotActiveMenu(List<String> notActiveIds,String parentId){
//将上级目录的id作为父节点查询child菜单
List<Map> datas = (List<Map>)getMenuDao().search(parentId);
if (datas!=null&&datas.size()>0){
for (Map data:datas){
notActiveIds.add((String)data.get("id"));
searchSubNotActiveMenu(notActiveIds,(String)data.get("id"));
}
}
}