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

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

原来的代码

ChongwuServiceImpl.java

/**
 * @author heyunlin
 * @version 1.0
 */
@Slf4j
@Service
public class ChongwuServiceImpl implements ChongwuService {

    @Override
	public 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 cs
            group by cs.chongwu_id
            having 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 cs
            group by cs.chongwu_id
            having 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 {

    @Override
	public 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 cwjnb
                    group by cwjnb.chongwu_id
                    having 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 cwjnb
                    group by cwjnb.chongwu_id
                    having 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>

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

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

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

如若内容造成侵权/违法违规/事实不符,请联系我们进行投诉反馈qq邮箱809451989@qq.com,一经查实,立即删除!

相关文章

云原生数据库海山(He3DB)PostgreSQL版核心设计理念

本期深入解析云原生数据库海山PostgreSQL版&#xff08;以下简称“He3DB”&#xff09;的设计理念&#xff0c;探讨在设计云原生数据库过程中遇到的工程挑战&#xff0c;并展示He3DB如何有效地解决这些问题。 He3DB是移动云受到 Amazon Aurora 论文启发而独立自主设计的云原生数…

html+javascript,用date完成,距离某一天还有多少天

图片展示: html代码 如下: <style>* {margin: 0;padding: 0;}.time-item {width: 500px;height: 45px;margin: 0 auto;}.time-item strong {background: orange;color: #fff;line-height: 100px;font-size: 40px;font-family: Arial;padding: 0 10px;margin-right: 10px…

Day98:云上攻防-云原生篇K8s安全Config泄漏Etcd存储Dashboard鉴权Proxy暴露

目录 云原生-K8s安全-etcd(Master-数据库)未授权访问 etcdV2版本利用 etcdV3版本利用 云原生-K8s安全-Dashboard(Master-web面板)未授权访问 云原生-K8s安全-Configfile鉴权文件泄漏 云原生-K8s安全-Kubectl Proxy不安全配置 知识点&#xff1a; 1、云原生-K8s安全-etcd未…

性能优化-02

uptime 依次显示当前时间、系统运行时间以及正在登录用户数&#xff0c;最后三个数字依次则是过去1分钟、5 分钟、15 分钟的平均负载(Load Average) 平均负载是指单位时间内&#xff0c;系统处于可运行状态和不可中断状态的平均进程数&#xff0c;也就是平均活跃进程数&#xf…

执行npm命令一直出现sill idealTree buildDeps怎么办?

一、问题 今天在运行npm时候一直出项sill idealTree buildDeps问题 二、 解决 1、网上查了一下&#xff0c;有网友说先删除用户界面下的npmrc文件&#xff08;注意一定是用户C:\Users\{账户}\下的.npmrc文件下不是nodejs里面&#xff09;&#xff0c;进入到对应目录下&#x…

golang实现定时监控 CLOSE_WAIT 连接的数量

文章目录 go实现定时检查大量的 CLOSE_WAIT 连接背景&#xff1a;为什么监控指定端口上的 CLOSE_WAIT 连接数量原因&#xff1a;什么是CLOSE_WAITgo实现定时检查大量的 CLOSE_WAIT 连接参考 go实现定时检查大量的 CLOSE_WAIT 连接 监控指定端口的连接状态&#xff0c;特别是关…

分类算法——KNN算法(二)

什么是K-近邻算法 1KNN原理 K Nearest Neighbor算法又叫KNN算法&#xff0c;这个算法是机器学习里面一个比较经典的算法&#xff0c;总体来说KNN算法是相对比较容易理解的算法。 定义 如果一个样本在特征空间中的k个最相似&#xff08;即特征空间中最邻近&#xff09;的样本…

搭建Python王国:初心者的武装指南

Python环境搭建与配置 进入编程世界的大门&#xff0c;选择了Python作为你的剑&#xff0c;那么接下来&#xff0c;你需要的是一把磨好的利剑——一个配置妥当的Python开发环境。本文将指引你完成这个必要的准备过程&#xff0c;从安装Python到选择合适的IDE&#xff0c;再到理…

性能升级,INDEMIND机器人AI Kit助力产业再蜕变

随着机器人进入到越来越多的生产生活场景中&#xff0c;作业任务和环境变得更加复杂&#xff0c;机器人需要更精准、更稳定、更智能、更灵敏的自主导航能力。 自主导航技术作为机器人技术的核心&#xff0c;虽然经过了多年发展&#xff0c;取得了长足进步&#xff0c;但在实践…

Linux/Tenten

Tenten Enumeration Nmap 扫描发现对外开放了22和80端口&#xff0c;使用nmap详细扫描这两个端口 ┌──(kali㉿kali)-[~/vegetable/HTB/Tenten] └─$ nmap -sC -sV -p 22,80 -oA nmap 10.10.10.10 Starting Nmap 7.93 ( https://nmap.org ) at 2023-12-25 00:52 EST Nmap …

epic免费游戏在哪里领 epic免费游戏怎么领取 图文教程一看就会

Epic Games是一家位于美国北卡罗来纳州卡里的视频游戏和软件开发商&#xff0c;由Tim Sweeney于1991年创立。该公司最著名的作品包括《堡垒之夜》和虚幻引擎&#xff0c;后者是一种广泛用于游戏开发的商用游戏引擎。Epic Games在2020年和2024年分别与索尼和迪士尼达成财务合作及…

SpringBoot生成二维码并扫码

文章目录 一、引入依赖二、配置1.yml配置2.配置文件实体二维码生成工具类 三、接口测试测试1、生成二维码手机扫码测试 结束 ★★★★★ 一、引入依赖 ZXing 是一个开源的条形码和二维码图像处理库&#xff0c;它提供了生成、解码和识别各种格式的条形码和二维码的功能。 <…

【word2pdf】Springboot word转pdf(自学使用)

文章目录 概要整体介绍具体实现官网pom文件增加依赖 遇到的问题本地运行OK&#xff0c;发布到Linux报错还是本地OK&#xff0c;但是Linux能运行的&#xff0c;但是中文乱码 小结 概要 Springboot word 转 pdf 整体介绍 搜了一下&#xff0c;发现了能实现功能的方法有四种 U…

ruoyi-nbcio-plus基于vue3的flowable的自定义业务显示历史信息组件的升级修改

更多ruoyi-nbcio功能请看演示系统 gitee源代码地址 前后端代码&#xff1a; https://gitee.com/nbacheng/ruoyi-nbcio 演示地址&#xff1a;RuoYi-Nbcio后台管理系统 http://122.227.135.243:9666/ 更多nbcio-boot功能请看演示系统 gitee源代码地址 后端代码&#xff1a…

多 线 程

1&#xff0e;什么是多线程? 有了多线程&#xff0c;我们就可以让程序同时做多件事情 2.多线程的作用? 提高效率 3&#xff0e;多线程的应用场景? 只要你想让多个事情同时运行就需要用到多线程 比如:软件中的耗时操作、所有的聊天软件、所有的服务器 1.进程和线程【理解】 …

mybiats-puls-插入测试以及雪花算法

一&#xff0c;测试 /* * 插入测试 * */ Test public void test01() {User user new User();/** 自动帮我们生成id* */user.setName("kuku");user.setAge(3);user.setEmail("2983394967qq.com");final int insert mapper.insert(user);System.out.print…

OceanMind海睿思入选《2024 中国MarTech行业生态图》

「Morketing研究院」正式发布《2024 中国MarTech行业生态图》&#xff0c;中新赛克海睿思作为国内数据治理优秀厂商&#xff0c;成功入选「数据与分析」板块「数据管理平台」子类&#xff0c;占据Martech领域关键节点。 ◎《2024中国MarTech行业生态图》 关于MarTech生态图 《…

【Django开发】前后端分离美多商城项目第7篇:登录,使用登录的流程【附代码文档】

美多商城项目4.0文档完整教程&#xff08;附代码资料&#xff09;主要内容讲述&#xff1a;美多商城&#xff0c;项目准备1.B2B--企业对企业,2.C2C--个人对个人,3.B2C--企业对个人,4.C2B--个人对企业,5.O2O--线上到线下,6.F2C--工厂到个人。项目准备&#xff0c;配置1. 修改set…

记录一次Java中使用P12证书访问https,nginx返回403的问题

目录 1、先使用浏览器导入证书访问&#xff0c;测试证书和密钥是否正确2、编写初始java代码3、结果响应 403 Forbidden4、解决方案 1、先使用浏览器导入证书访问&#xff0c;测试证书和密钥是否正确 成功返回&#xff0c;说明p12证书和密钥是没问题的。 2、编写初始java代码 …

智慧公厕是公共厕所信息化向高端发展的必然

现代社会的发展离不开科技的加持&#xff0c;公共厕所作为城市基础设施之一&#xff0c;也在不断引入智慧化的概念&#xff0c;实现信息化、智慧化和数字化的使用和管理。智慧公厕通过物联网、大数据、云计算、网络通信和自动化控制技术的应用&#xff0c;成为了高级的社会公共…