三级菜单查询优化

本文介绍了如何将原本运行500多毫秒的三级菜单SQL查询优化,通过使用Java进行多次for循环处理,减少数据库操作次数,最终将操作时间降低到几十毫秒。
摘要由CSDN通过智能技术生成

最初的我来三级菜单查询

package com.jt.service.Impl;

import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.jt.mapper.ItemCatMapper;
import com.jt.pojo.ItemCat;
import com.jt.service.ItemCatService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;

import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;

@Service
public class ItemCatServiceImpl implements ItemCatService {
   

    @Autowired
    ItemCatMapper mapper;

    /**
     * 1 查询3级商品分类信息
     * 请求路径: /itemCat/findItemCatList
     * 请求类型: get
     * 请求参数: type
     * @return
     */
    @Transactional
    public List<ItemCat> getItemCatList(){
   

        //开始时间
        long stati  =System.currentTimeMillis();
            //创建条件构造器
            QueryWrapper wrapper = new QueryWrapper();
            wrapper.eq("parent_id", 0);
            //先查询一级目录
            List<ItemCat> itemCat = mapper.selectList(wrapper
  • 1
    点赞
  • 5
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值