文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

spring中mybatis多表查询处理的示例分析

2023-06-02 23:52

关注

这篇文章将为大家详细讲解有关spring中mybatis多表查询处理的示例分析,小编觉得挺实用的,因此分享给大家做个参考,希望大家阅读完这篇文章后可以有所收获。

package com.swhy.bw.advisor.center.comment;import com.github.pagehelper.Page;import com.github.pagehelper.PageHelper;import com.github.pagehelper.PageInfo;import com.swhy.bw.advisor.dal.mapper.ApCommentExtMapper;import com.swhy.bw.advisor.dao.biz.response.theme.AdviserThemeDetailRes;import com.swhy.bw.advisor.dao.biz.response.user.UserInfoRes;import com.swhy.bw.advisor.dao.center.request.comment.CommentCenterListReq;import com.swhy.bw.advisor.dao.center.request.comment.CommentCenterModifyReq;import com.swhy.bw.advisor.dao.center.request.comment.SelectCommentReq;import com.swhy.bw.advisor.dao.center.response.comment.CommentCenterListRes;import com.swhy.bw.advisor.dao.center.response.comment.CommentDetailRes;import com.swhy.bw.advisor.dao.entity.ApComment;import com.swhy.bw.advisor.dao.entity.ApLiveRoom;import com.swhy.bw.advisor.dao.entity.VdInvestAdviser;import com.swhy.bw.advisor.elasticsearch.utils.AdviserEsUtils;import com.swhy.bw.advisor.elasticsearch.utils.AdviserThemeEsUtils;import com.swhy.bw.advisor.elasticsearch.utils.LiveRoomEsUtils;import com.swhy.bw.advisor.elasticsearch.utils.UserEsUtils;import com.swhy.bw.advisor.enums.CommentEnums;import com.swhy.bw.advisor.util.CollectionUtils;import com.swhy.bw.advisor.util.ExceptionUtil;import com.swhy.bw.advisor.util.StringUtils;import com.swhy.bw.advisor.util.date.DateFormat;import com.swhy.bw.advisor.util.date.DateUtils;import com.swhy.bw.advisor.util.exception.BusinessException;import com.swhy.bw.advisor.util.log.LOG_TYPE;import com.swhy.bw.advisor.util.log.LogUtil;import com.swhy.bw.advisor.util.route.RouteUtil;import com.swhy.bw.common.util.date.DateUtil;import org.springframework.beans.BeanUtils;import org.springframework.beans.factory.annotation.Autowired;import org.springframework.stereotype.Service;import java.util.*;import java.util.stream.Collectors;@Servicepublic class ApCommentMgmtService {    @Autowired    private ApCommentExtMapper apCommentExtMapper;    @Autowired    private AdviserThemeEsUtils adviserThemeEsUtils;    public PageInfo findApCommentList(CommentCenterListReq apCommentReq) throws BusinessException {        final String METHOD = "findApCommentList";        try {            PageHelper.startPage(apCommentReq.getPageNum(), apCommentReq.getPageSize());            LogUtil.logInput(LOG_TYPE.BIZ.val, this, METHOD, apCommentReq);            // 请求参数            if (apCommentReq.getEndDate() != null)                apCommentReq.setEndDate(DateUtil.addDay(apCommentReq.getEndDate(), 1));            // 查询评论列表            Page records = (Page) apCommentExtMapper.selectCommentListAll(apCommentReq);            if (records == null) {                return new PageInfo<>();            }            Page resPage = new Page<>();            BeanUtils.copyProperties(records, resPage);            // 查询投顾信息            HashMap adviserMap = getAdviserInfo(records);            // 查询信息            HashMap titleMap;            if (apCommentReq.getCommentType().equals(CommentEnums.comment_type_theme.getValue())) {                titleMap = getThemeInfo(records);            } else {                titleMap = getLiveroomInfo(records);            }            // 转换            records.forEach(record -> {                CommentCenterListRes res = new CommentCenterListRes();                BeanUtils.copyProperties(record, res);                res.setTitle(titleMap.getOrDefault(record.getCommentId(), ""));                res.setInvestAdviserName(adviserMap.getOrDefault(record.getAdviserId(), ""));                res.setPublishTime(DateUtil.formateDate2Str(record.getPublishTime(), "yyyy-MM-dd HH:mm:ss"));                res.setCommentContent(record.getContent());                resPage.add(res);            });            return new PageInfo<>(resPage);        } catch (Exception e) {            LogUtil.logError(LOG_TYPE.BIZ.val, this, METHOD, e);            throw ExceptionUtil.generateException("评论列表查询异常", e);        }    }    private HashMap getThemeInfo(Page records) {        HashMap themeMap = new HashMap<>();        List themeIds = records.stream().map(ApComment::getCommentId).distinct().collect(Collectors.toList());        List themeDetailResList = adviserThemeEsUtils.findThemeByIds(themeIds);        if (CollectionUtils.isNotEmpty(themeDetailResList))            themeDetailResList.forEach(theme -> themeMap.put(theme.getId(), theme.getTitle()));        return themeMap;    }    private HashMap getLiveroomInfo(Page records) {        HashMap themeMap = new HashMap<>();        List liveroomIds = records.stream().map(ApComment::getCommentId).distinct().collect(Collectors.toList());        List liveRooms = LiveRoomEsUtils.findByIds(liveroomIds);        if (CollectionUtils.isNotEmpty(liveRooms))            liveRooms.forEach(liveRoom -> themeMap.put(liveRoom.getId(), liveRoom.getTitle()));        return themeMap;    }    private HashMap getAdviserInfo(Page records) {        HashMap adviserMap = new HashMap<>();        List adviserIds = records.stream().map(ApComment::getAdviserId).distinct().collect(Collectors.toList());        List advisers = AdviserEsUtils.findByIds(adviserIds);        if (CollectionUtils.isNotEmpty(advisers))            advisers.forEach(adviser -> adviserMap.put(adviser.getId(), adviser.getInvestAdviserName()));        return adviserMap;    }}

关于“spring中mybatis多表查询处理的示例分析”这篇文章就分享到这里了,希望以上内容可以对大家有一定的帮助,使各位可以学到更多知识,如果觉得文章不错,请把它分享出去让更多的人看到。

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯