zoukankan      html  css  js  c++  java
  • 根据根节点查询所有子节点

    package com.atguigu.gulimall.product.service.impl;
    
    import com.sun.org.apache.bcel.internal.generic.RETURN;
    import org.springframework.stereotype.Service;
    
    import java.util.List;
    import java.util.Map;
    import java.util.stream.Collectors;
    
    import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
    import com.baomidou.mybatisplus.core.metadata.IPage;
    import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
    import com.atguigu.common.utils.PageUtils;
    import com.atguigu.common.utils.Query;
    
    import com.atguigu.gulimall.product.dao.CategoryDao;
    import com.atguigu.gulimall.product.entity.CategoryEntity;
    import com.atguigu.gulimall.product.service.CategoryService;
    
    
    @Service("categoryService")
    public class CategoryServiceImpl extends ServiceImpl<CategoryDao, CategoryEntity> implements CategoryService {
    
        @Override
        public PageUtils queryPage(Map<String, Object> params) {
            IPage<CategoryEntity> page = this.page(
                    new Query<CategoryEntity>().getPage(params),
                    new QueryWrapper<CategoryEntity>()
            );
    
            return new PageUtils(page);
        }
    
        @Override
        public List<CategoryEntity> listWithTree() {
            List<CategoryEntity> entities = baseMapper.selectList(null);
            //找到所有一级分类
            List<CategoryEntity> level1Menus = entities.stream().filter((categoryEntity -> {
                return
                        categoryEntity.getParentCid() == 0;
            }
            )).map((menu)->{
                menu.setChildren(getChildrens(menu,entities));
                return menu;
            }).sorted((menu1,menu2)->{
                return menu1.getSort()-menu2.getSort();
            }).collect(Collectors.toList());
            return level1Menus;
        }
    
        //递归查找所有菜单的子菜单
        private List<CategoryEntity> getChildrens(CategoryEntity root,List<CategoryEntity> all){
            List<CategoryEntity> children = all.stream().filter((categoryEntity -> {
                return categoryEntity.getParentCid() == root.getCatId();
            })).map((categoryEntity -> {
                categoryEntity.setChildren(getChildrens(categoryEntity,all));
                return categoryEntity;
            })).sorted((menu1,menu2)->{
                return (menu1.getSort()==null?0:menu1.getSort())-(menu2.getSort()==null?0:menu2.getSort());
            }).collect(Collectors.toList());
            return children;
        }
    
    }
    

      

  • 相关阅读:
    第八周读书笔记 ——编程之美
    结对编程收获——旧的不去&新的不来
    第七周读书笔记——深入理解计算机系统
    第六周读书笔记——《编程珠玑(第二版)》
    专业性体育平台——虎扑的发展与创新的思考(第五次课后作业)
    第五次读书笔记—— Robrt C. Martin的《代码整洁之道》
    个人博客-ASE课程最后一周总结
    期中作业,阅读材料感想
    Poemscape beta版本第二阶段目标描述
    Poemscape|Beta阶段第二天
  • 原文地址:https://www.cnblogs.com/vincentmax/p/14380907.html
Copyright © 2011-2022 走看看