分享一下项目中遇到的排序失效问题

今天把原来的一个查询接口的业务代码进行了优化,减少了十几行冗余的代码。

原来的代码

ChongwuServiceImpl.java

/*** @author heyunlin* @version 1.0*/
@Slf4j
@Service
public class ChongwuServiceImpl implements ChongwuService {@Overridepublic JsonResult<JsonPage<Chongwu>> selectByPage(ChongwuPager pager) {List<Integer> skillIds = pager.getSkillIds();if (CollectionUtils.isNotEmpty(skillIds)) {int size = skillIds.size();// 得到order by语句String statement = Pager.getOrderByStatement(pager);List<Chongwu> rows = chongwuMapper.selectBySkills(pager, skillIds, size, statement);long total = chongwuMapper.selectCountBySkills(pager, skillIds, size);return JsonResult.restPage(total, rows);} else {Page<Chongwu> page = new Page<>(pager.getPage(), pager.getRows());QueryWrapper<Chongwu> wrapper = new QueryWrapper<>();wrapper.eq(pager.getCategoryId() != null,"category_id", pager.getCategoryId());wrapper.eq(StringUtils.isNotEmpty(pager.getRoleId()),"role_id", pager.getRoleId());wrapper.eq(StringUtils.isNotEmpty(pager.getZuoqiId()),"zuoqi_id", pager.getZuoqiId());// 得到order by语句String statement = Pager.getOrderByStatement(pager);wrapper.last(statement);Page<Chongwu> result = chongwuMapper.selectPage(page, wrapper);return JsonResult.restPage(result);}}}

ChongwuMapper.java

@Repository
public interface ChongwuMapper extends BaseMapper<Chongwu> {/*** 查询已学习指定技能的宠物数量* @param pager 分页参数* @param skillIds 宠物技能类型id列表* @param total 总技能数* @return int*/long selectCountBySkills(@Param("pager") ChongwuPager pager,@Param("skillIds") List<Integer> skillIds,@Param("total") int total);/*** 查询已学习指定技能的宠物* @param pager 分页参数* @param skillIds 宠物技能类型id列表* @param total 总技能数* @param statement order by后面的语句* @return List<Chongwu>*/List<Chongwu> selectBySkills(@Param("pager") ChongwuPager pager,@Param("skillIds") List<Integer> skillIds,@Param("total") int total,@Param("statement") String statement);
}

ChongwuMapper.xml

<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"><mapper namespace="cn.edu.sgu.www.mhxysy.mapper.chongwu.ChongwuMapper"><resultMap id="resultMap" type="cn.edu.sgu.www.mhxysy.entity.chongwu.Chongwu"><result column = "id" property = "id" /><result column = "name" property = "name" /><result column = "type" property = "type" /><result column = "grade" property = "grade" /><result column = "score" property = "score" /><result column = "role_id" property = "roleId" /><result column = "zuoqi_id" property = "zuoqiId" /><result column = "zizhi_id" property = "zizhiId" /><result column = "lifespan" property = "lifespan" /><result column = "ty_status" property = "tyStatus" /><result column = "category_id" property = "categoryId" /><result column = "attribute_id" property = "attributeId" /></resultMap><select id="selectCountBySkills" resultType="long">select count(*) from chongwu where id in (select cs.chongwu_id from (select chongwu_id from chongwu_skill where skill_id in (<foreach item='skillId' collection='skillIds' separator=','>#{skillId}</foreach>)) as csgroup by cs.chongwu_idhaving count(cs.chongwu_id) >= #{total})<if test='pager.zuoqiId != null and pager.zuoqiId != ""'>and zuoqi_id = #{pager.zuoqiId}</if><if test='pager.roleId != null and pager.roleId != ""'>and role_id = #{pager.roleId}</if><if test='pager.categoryId != null'>and category_id = #{pager.categoryId}</if></select><select id="selectBySkills" resultMap="resultMap">select * from chongwu where id in (select cs.chongwu_id from (select chongwu_id from chongwu_skill where skill_id in (<foreach item='skillId' collection='skillIds' separator=','>#{skillId}</foreach>)) as csgroup by cs.chongwu_idhaving count(cs.chongwu_id) >= #{total})<if test='pager.zuoqiId != null and pager.zuoqiId != ""'>and zuoqi_id = #{pager.zuoqiId}</if><if test='pager.roleId != null and pager.roleId != ""'>and role_id = #{pager.roleId}</if><if test='pager.categoryId != null'>and category_id = #{pager.categoryId}</if>order by role_id, #{statement}</select>
</mapper>

重构后的代码

ChongwuServiceImpl.java

/*** @author heyunlin* @version 1.0*/
@Slf4j
@Service
public class ChongwuServiceImpl implements ChongwuService {@Overridepublic Page<Chongwu> selectByPage(ChongwuPager pager) {List<Integer> skillIds = pager.getSkillIds();pager.setTotal(skillIds != null ? skillIds.size() : 0);pager.setStatement(Pager.getStatement(pager));Page<Chongwu> page = Pager.ofPage(pager);return chongwuMapper.selectPage(page, pager);}}

ChongwuMapper.java

@Repository
public interface ChongwuMapper extends BaseMapper<Chongwu> {/*** 分页查询宠物列表* @param page 分页参数* @param pager 查询条件* @return List<Chongwu>*/Page<Chongwu> selectPage(Page<Chongwu> page, ChongwuPager pager);
}

ChongwuMapper.xml

<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"><mapper namespace="cn.edu.sgu.www.mhxysy.mapper.chongwu.ChongwuMapper"><resultMap id="resultMap" type="cn.edu.sgu.www.mhxysy.entity.chongwu.Chongwu"><result column = "role_id" property = "roleId" /><result column = "zuoqi_id" property = "zuoqiId" /><result column = "zizhi_id" property = "zizhiId" /><result column = "ty_status" property = "tyStatus" /><result column = "category_id" property = "categoryId" /><result column = "attribute_id" property = "attributeId" /></resultMap><select id="selectPage" resultMap="resultMap">select * from chongwu<where>1 = 1<if test='pager.total > 0'>and id in (select cwjnb.chongwu_id from (select chongwu_id from chongwu_skill where skill_id in (<foreach item="skillId" collection="pager.skillIds" separator=",">#{skillId}</foreach>)) as cwjnbgroup by cwjnb.chongwu_idhaving count(cwjnb.chongwu_id) >= #{pager.total})</if><if test="pager.zuoqiId != null and pager.zuoqiId != ''">and zuoqi_id = #{pager.zuoqiId}</if><if test="pager.roleId != null and pager.roleId != ''">and role_id = #{pager.roleId}</if><if test='pager.categoryId != null'>and category_id = #{pager.categoryId}</if></where><if test="pager.statement != null and pager.statement != ''">order by #{pager.statement}</if></select>
</mapper>

排序失效问题

修改后引发了前端排序失效问题,点击排序图标触发了重新渲染表格数据的ajax请求,而且控制台打印的SQL语句也没有问题,直接复制到数据库中执行,能查出排序后的数据。

前端排序失效截图

控制台打印的SQL查询语句

直接复制到Navicat中执行,查询到了正确的结果(score列按升序排序)

问题原因分析

遇到这个问题其实仔细一想非常简单,就是${}和#{}的区别,把#{}改为${}即可。

这是把#{}改成${}之后,在控制台的SQL语句,两者有一定的区别:

  • 上图的SQL语句:select * from chongwu WHERE 1 = 1 order by role_id , "score desc" LIMIT 10
  • 下图的SQL语句:select * from chongwu WHERE 1 = 1 order by role_id , score desc LIMIT 10

纠正后的代码

ChongwuMapper.xml

<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"><mapper namespace="cn.edu.sgu.www.mhxysy.mapper.chongwu.ChongwuMapper"><resultMap id="resultMap" type="cn.edu.sgu.www.mhxysy.entity.chongwu.Chongwu"><result column = "id" property = "id" /><result column = "name" property = "name" /><result column = "type" property = "type" /><result column = "grade" property = "grade" /><result column = "score" property = "score" /><result column = "role_id" property = "roleId" /><result column = "zuoqi_id" property = "zuoqiId" /><result column = "zizhi_id" property = "zizhiId" /><result column = "lifespan" property = "lifespan" /><result column = "ty_status" property = "tyStatus" /><result column = "category_id" property = "categoryId" /><result column = "attribute_id" property = "attributeId" /></resultMap><select id="selectPage" resultMap="resultMap">select * from chongwu<where>1 = 1<if test='pager.total > 0'>and id in (select cwjnb.chongwu_id from (select chongwu_id from chongwu_skill where skill_id in (<foreach item="skillId" collection="pager.skillIds" separator=",">#{skillId}</foreach>)) as cwjnbgroup by cwjnb.chongwu_idhaving count(cwjnb.chongwu_id) >= #{pager.total})</if><if test="pager.zuoqiId != null and pager.zuoqiId != ''">and zuoqi_id = #{pager.zuoqiId}</if><if test="pager.roleId != null and pager.roleId != ''">and role_id = #{pager.roleId}</if><if test='pager.categoryId != null'>and category_id = #{pager.categoryId}</if></where><if test="pager.statement != null and pager.statement != ''">order by ${pager.statement}</if></select>
</mapper>

重新启动项目之后,问题得以解决,不知道有没有大佬遇到类似的问题,欢迎评论区留言分享~

好了,文章就分享到这里了,看完不要忘了点赞+收藏哦~

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.rhkb.cn/news/306690.html

如若内容造成侵权/违法违规/事实不符,请联系长河编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

【Algorithms 4】算法(第4版)学习笔记 24 - 5.5 数据压缩

文章目录 前言参考目录学习笔记1&#xff1a;介绍2&#xff1a;游程编码 run-length encoding2.1&#xff1a;介绍2.2&#xff1a;Java 实现3&#xff1a;霍夫曼压缩 Huffman compression3.1&#xff1a;变长前缀码 variable-length codes3.1.1&#xff1a;介绍3.1.2&#xff1…

基于ssm餐饮掌上设备点餐系统论文

摘要 随着信息技术在管理上越来越深入而广泛的应用&#xff0c;管理信息系统的实施在技术上已逐步成熟。本文介绍了餐饮掌上设备点餐系统的开发全过程。通过分析餐饮掌上设备点餐系统管理的不足&#xff0c;创建了一个计算机管理餐饮掌上设备点餐系统的方案。文章介绍了餐饮掌…

OpenHarmony编译构建系统

这篇来聊聊OpenHarmony的编译构建&#xff0c;经过前面的实践&#xff0c;再来看编译构建。 编译构建概述 在官网中提到了&#xff0c;OpenHarmony编译子系统是以GN和Ninja构建为基座&#xff0c;对构建和配置粒度进行部件化抽象、对内建模块进行功能增强、对业务模块进行功能…

代码随想录第38天| 509. 斐波那契数 70. 爬楼梯

理论基础 刷题大纲&#xff1a; 动态规划5步曲&#xff1a; 1、确定dp数组以及下标的含义 2、确定递推公式 3、dp数组如何初始化 4、确定遍历顺序 5、举例推导dp数组 509. 斐波那契数 509. 斐波那契数 - 力扣&#xff08;LeetCode&#xff09; 代码随想录 (programmercarl.co…

数据结构-----枚举、泛型进阶(通配符?)

文章目录 枚举1 背景及定义2 使用3 枚举优点缺点4 枚举和反射4.1 枚举是否可以通过反射&#xff0c;拿到实例对象呢&#xff1f; 5 总结 泛型进阶1 通配符 ?1.1 通配符解决什么问题1.2 通配符上界1.3 通配符下界 枚举 1 背景及定义 枚举是在JDK1.5以后引入的。主要用途是&am…

RAID磁盘阵列

一.raid简介 独立硬盘冗余阵列&#xff0c;旧称廉价磁盘冗余阵列&#xff0c;简称磁盘阵列。利用虚拟化存储技术把多个硬盘组合起来&#xff0c;成为一个或多个硬盘阵列组&#xff0c;目的为提升性能或数据冗余&#xff0c;或是两者同时提升。RAID把多个硬盘组合成为一个逻辑硬…

【Docker】docker快速安装部署fastdfs的镜像详细记录

部署nacos的docker镜像 第一步&#xff1a; 获取fastdfs镜像1、查看镜像列表2、创建本地映射文件夹 第二步&#xff1a;运行镜像1.使用docker镜像构建tracker服务2.使用docker镜像构建Storage服务3.Storage服务中默认安装了Nginx服务4.如果需要修改storage则配置则进到以下目录…

python用循环新建多个列表

​在Python编程中&#xff0c;我们经常需要创建多个列表来存储和管理数据。有时候&#xff0c;列表的数量是已知的&#xff0c;我们可以手动逐一创建&#xff1b;但更多时候&#xff0c;列表的数量是动态的&#xff0c;或者我们希望通过某种模式来批量生成列表。这时候&#xf…

典型新能源汽车热管理系统方案分析

目前行业具有代表性的热管理系统有PTC电加热方案、热泵方案&#xff08;特斯拉八通阀热泵、吉利直接式热泵&#xff09;、威马的柴油加热方案以及以理想为代表的插电式混动车方案。 小鹏P7整车热管理方案分析&#xff08;PTC电加热方案&#xff09; 小鹏P7作为小鹏汽车的第2款…

设计模式——组合模式08

组合模式&#xff1a;把类似对象或方法组合成结构为树状的设计思路。 例如部门之间的关系。 设计模式&#xff0c;一定要敲代码理解 抽象组件 /*** author ggbond* date 2024年04月06日 08:54* 部门有&#xff1a;二级部门&#xff08;下面管三级部门&#xff09; 三级部门 &a…

网工内推 | 网络工程师,13薪,周末双休,华三、华为认证优先

01 路邦远大 招聘岗位&#xff1a;网络工程师 职责描述&#xff1a; 1、配合市场销售人员&#xff0c;做好产品的售后服务工作&#xff1b; 2、负责项目方案安装调试指导以及日常客户使用培训&#xff0c;对客户提出的问题提出解决方案&#xff1b; 3、为客户提供专业、规范的…

solidity(3)

地址类型 pragma solidity ^0.8.0;contract AddressExample {// 地址address public _address 0x7A58c0Be72BE218B41C608b7Fe7C5bB630736C71;address payable public _address1 payable(_address); // payable address&#xff0c;可以转账、查余额// 地址类型的成员uint256…

小样本计数网络FamNet(Learning To Count Everything)

小样本计数网络FamNet(Learning To Count Everything) 大多数计数方法都仅仅针对一类特定的物体&#xff0c;如人群计数、汽车计数、动物计数等。一些方法可以进行多类物体的计数&#xff0c;但是training set中的类别和test set中的类别必须是相同的。 为了增加计数方法的可拓…

揭秘大前端开发方向的新机遇!

众所周知&#xff0c;华为开发者大会2023&#xff0c;宣布不再兼容安卓&#xff0c;同时宣布了“鸿飞计划”&#xff0c;欲与iOS、安卓在市场三分天下&#xff0c;这对中国国产操作系统而言&#xff0c;具有划时代的意义。 鸿蒙应用开发的兴起&发展 鸿蒙操作系统是华为自…

如何开辟动态二维数组(C语言)

1. 开辟动态二维数组 C语言标准库中并没有可以直接开辟动态二维数组的函数&#xff0c;但我们可以通过动态一维数组来模拟动态二维数组。 二维数组其实可以看作是一个存着"DataType []"类型数据的一维数组&#xff0c;也就是存放着一维数组地址的一维数组。 所以&…

阿里云4核16G服务器可以用来做什么?

阿里云4核16G服务器可以用来做什么&#xff1f;可用来搭建游戏服务器&#xff0c;阿里云4核16G服务器10M带宽30元1个月、90元3个月&#xff0c;优惠活动 aliyunfuwuqi.com/go/youhui 阿里云4核16G服务器可以用来做什么&#xff1f;除了搭建游戏服务器&#xff0c;还可以用来哪…

python小游戏

这些游戏你玩过几个&#xff1f; 1.贪吃蛇2.吃豆人3.加农炮4.四子棋5. Fly Bird<font color #f3704ab>6.记忆&#xff1a;数字对拼图游戏&#xff08;欢迎挑战&#xff01;用时&#xff1a;2min&#xff09;7.乒乓球8.上课划水必备-井字游戏&#xff08;我敢说100%的人都…

springCloud项目打包 ,maven package或install打包报错

解决思路一&#xff1a; <build><plugins><plugin><groupId>org.springframework.boot</groupId><artifactId>spring-boot-maven-plugin</artifactId><version>2.3.7.RELEASE</version></plugin><plugin>&…

智能合约:未来数字经济的基石

智能合约是一种自动执行交易的计算机协议&#xff0c;它以代码形式规定了交易双方的权利和义务&#xff0c;具有高度的可靠性和安全性。随着数字经济的发展&#xff0c;智能合约的重要性日益凸显&#xff0c;将成为未来数字经济的基石。 首先&#xff0c;智能合约在金融领域的应…

雨云:不只是一阵清风,更是一场暴雨的力量

引言 在网络时代&#xff0c;服务器是任何在线业务的核心。无论你是运营一家小型博客还是承载着数百万用户的大型电商平台&#xff0c;都需要一个稳定、高效的服务器来支持你的业务。然而&#xff0c;在众多服务器提供商中&#xff0c;有一家备受推崇&#xff0c;那就是雨云。 …