对于商品分类的实现方式

@Override
@GmallCache(prefix = "category")
public List<JSONObject> getBaseCategoryList() {
    // 声明几个json 集合
    ArrayList<JSONObject> list = new ArrayList<>();
    // 声明获取所有分类数据集合
    List<BaseCategoryView> baseCategoryViewList = baseCategoryViewMapper.selectList(null);
    // 循环上面的集合并安一级分类Id 进行分组
    Map<Long, List<BaseCategoryView>> category1Map  = baseCategoryViewList.stream().collect(Collectors.groupingBy(BaseCategoryView::getCategory1Id));
    int index = 1;
    // 获取一级分类下所有数据
    for (Map.Entry<Long, List<BaseCategoryView>> entry1  : category1Map.entrySet()) {
        // 获取一级分类Id
        Long category1Id  = entry1.getKey();
        // 获取一级分类下面的所有集合
        List<BaseCategoryView> category2List1  = entry1.getValue();
        //
        JSONObject category1 = new JSONObject();
        category1.put("index", index);
        category1.put("categoryId",category1Id);
        // 一级分类名称
        category1.put("categoryName",category2List1.get(0).getCategory1Name());
        // 变量迭代
        index++;
        // 循环获取二级分类数据
        Map<Long, List<BaseCategoryView>> category2Map  = category2List1.stream().collect(Collectors.groupingBy(BaseCategoryView::getCategory2Id));
        // 声明二级分类对象集合
        List<JSONObject> category2Child = new ArrayList<>();
        // 循环遍历
        for (Map.Entry<Long, List<BaseCategoryView>> entry2  : category2Map.entrySet()) {
            // 获取二级分类Id
            Long category2Id  = entry2.getKey();
            // 获取二级分类下的所有集合
            List<BaseCategoryView> category3List  = entry2.getValue();
            // 声明二级分类对象
            JSONObject category2 = new JSONObject();

            category2.put("categoryId",category2Id);
            category2.put("categoryName",category3List.get(0).getCategory2Name());
            // 添加到二级分类集合
            category2Child.add(category2);

            List<JSONObject> category3Child = new ArrayList<>();

            // 循环三级分类数据
            category3List.stream().forEach(category3View -> {
                JSONObject category3 = new JSONObject();
                category3.put("categoryId",category3View.getCategory3Id());
                category3.put("categoryName",category3View.getCategory3Name());

                category3Child.add(category3);
            });

            // 将三级数据放入二级里面
            category2.put("categoryChild",category3Child);

        }
        // 将二级数据放入一级里面
        category1.put("categoryChild",category2Child);
        list.add(category1);
    }
    return list;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值