Mybatis分页查询,同时返回total

在垃圾项目中一般都是使用mybatis plus自动返回Page,但是涉及到多表联合或者等等情况最终还是要使用mybatis进行手写sql查询,所以有此文章以便后续使用查询.

首先mysql需要支持多条查询语句,在mysql配置url后加上:

&allowMultiQueries=true&useAffectedRows=true

Mapper查询数据的返回值用Object接收

java 复制代码
 List<Object> getWarningDataFromPage(@Nullable @Param("userId") Long userId,
                                         @Nullable @Param("orderNum") String orderNum,
                                         @Nullable @Param("deviceId") String deviceId,
                                         @Param("pageSize") long pageSize,
                                         @Param("pageNo") long pageNo
    );

mapper xml语句

XML 复制代码
<!--需查询数据map-->
<resultMap id="BaseResultMap" type="com.jingli.modules.sys.warning.domain.Warning">
        <id property="id" column="id" jdbcType="INTEGER"/>
        <result property="warningId" column="warning_id" jdbcType="VARCHAR"/>
        <result property="warningType" column="warning_type" jdbcType="INTEGER"/>
        <result property="warningDesc" column="warning_desc" jdbcType="VARCHAR"/>
        <result property="warningContent" column="warning_content" jdbcType="VARCHAR"/>
        <result property="warningTime" column="warning_time" jdbcType="TIMESTAMP"/>
        <result property="operatorId" column="operator_id" jdbcType="INTEGER"/>
        <result property="deviceId" column="device_id" jdbcType="VARCHAR"/>
        <result property="port" column="port" jdbcType="VARCHAR"/>
        <result property="orderNumber" column="order_number" jdbcType="VARCHAR"/>
        <result property="status" column="status" jdbcType="INTEGER"/>
        <result property="remark" column="remark" jdbcType="VARCHAR"/>
    </resultMap>

<!--total数据-->
  <resultMap type="java.lang.Integer" id="count">
        <result column="total"/>
   </resultMap>

<!--进行多次查询获取到对应数据-->
<select id="getWarningDataFromPage" resultMap="BaseResultMap,count">
        SELECT SQL_CALC_FOUND_ROWS
        cw.id, cw.warning_id, cw.warning_type, cw.warning_desc, cw.warning_content, cw.warning_time, cw.operator_id,
        cw.device_id, cw.port, cw.order_number, cw.status, cw.remark
        FROM
        `c_warning` AS `cw`
        LEFT JOIN `c_charging_pile` AS `ccp` ON cw.device_id = ccp.ID
        WHERE 1 = 1
        <if test="null != userId">
            AND ccp.userId = #{userId}
        </if>
        <if test="null != orderNum and orderNum !=''">
            AND cw.order_number = #{orderNum}
        </if>
        <if test="null != deviceId and deviceId !=''">
            AND cw.device_id = #{deviceId}
        </if>

        limit #{pageNo},#{pageSize};
        
        ###用于获取total
        SELECT FOUND_ROWS() as total;
    </select>

从List<Object>中取出数据:

java 复制代码
 @Override
    public Page<Warning> getWarningPage(@Nullable Long userId, @Nonnull Long pageSize, @Nonnull Long pageNo, @Nullable String deviceId, @Nullable String orderNum) {
        Long selectNum = (pageNo - 1) * pageSize;
        List<Object> dtoData = warningMapper.getWarningDataFromPage(userId, orderNum, deviceId, pageSize, selectNum);
        List<Warning> warningList = (List<Warning>) dtoData.get(0);
        Integer total =((List<Integer>) dtoData.get(1)).get(0);
        Page<Warning> warningPage = new Page<>(pageNo, pageSize);

        warningPage.setRecords(warningList);
        warningPage.setTotal(total);
        warningPage.setSearchCount(true);
        warningPage.setCurrent(pageNo);
        warningPage.setSize(pageSize);

        return warningPage;
    }

至此可实现mybatis plus的Page查询,mysql中执行查询total并不会再次查询,而是获取到对应的分页查询到数据的结果.

相关推荐
菜鸟赵大宝几秒前
2023软考中级《软件设计师》(备考冲刺版) | 数据库系统
数据库·数据库开发·数据库架构
weixin_8368695201 小时前
Java中的机器学习模型集成与训练
java·开发语言·机器学习
TNTLWT1 小时前
MySQL:设计数据库与操作
数据库·mysql
VX_DZbishe1 小时前
springboot旅游管理系统-计算机毕业设计源码16021
java·spring boot·python·servlet·django·flask·php
橙子味冰可乐1 小时前
isprintable()方法——判断字符是否为可打印字符
java·前端·javascript·数据库·python
yunpeng.zhou1 小时前
logging 模块简单使用记录
java·前端·数据库
嗨!陌生人2 小时前
SpringSecurity中文文档(Servlet Session Management)
java·hadoop·spring boot·后端·spring cloud·servlet
广西千灵通网络科技有限公司2 小时前
基于Java的微信记账小程序【附源码】
java·微信·小程序
シ風箏2 小时前
Milvus【部署 01】向量数据库Milvus在Linux环境下的在线+离线安装
linux·数据库·milvus·向量数据库·特征搜索
JavaPub-rodert3 小时前
MyBatis-plus这么好用,不允许还有人不会
mybatis·mybatis-plus