亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

spring中mybatis多表查詢處理的示例分析

發布時間:2021-12-15 11:47:48 來源:億速云 閱讀:152 作者:小新 欄目:編程語言

這篇文章將為大家詳細講解有關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;
@Service
public 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多表查詢處理的示例分析”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

嵊州市| 隆回县| 桑植县| 资中县| 义乌市| 常宁市| 宜春市| 宁德市| 龙游县| 东源县| 原平市| 察隅县| 绥中县| 巢湖市| 宁明县| 迭部县| 封开县| 桃园市| 化德县| 玉环县| 万安县| 株洲市| 昭苏县| 阿鲁科尔沁旗| 安丘市| 都匀市| 湾仔区| 尉氏县| 万山特区| 阿鲁科尔沁旗| 沂源县| 海丰县| 靖江市| 斗六市| 睢宁县| 乌拉特中旗| 濉溪县| 鸡泽县| 耒阳市| 金山区| 深圳市|