JPA 用 List 入参在 @Query中报错 unexpected AST node: {vector}

遇到了一个 JPA 查询的问题 ,我原来的JPA语句是这样的

java 复制代码
@Query(value = " select s from SmsCountEntity  s where (?1 is null or s.areaType in (?1)) order by s.dateCreate desc ")
Page<SmsCountDTO> findSmsCountPage( List<Integer> areaList,Pageable pageable);

看了项目其他也是这样的写法,但还是报错了,喵喵喵?不科学啊。

"message": "org.hibernate.hql.internal.ast.QuerySyntaxException: unexpected AST node: {vector} [ select new com.dfl.ycp3.enquiry.dto.SmsCountDTO(s.shopCode,s.shortName,s.areaType) from com.dfl.ycp3.enquiry.entity.SmsCountEntity s where (:x4_0, :x4_1, :x4_2 is null or s.areaType in (:x4_0, :x4_1, :x4_2)) order by s.dateCreate desc , s.id desc];

很明显我大概知道是入参的 List<Integer> areaList 问题,因为 JPA 语句中会判断入参的 List<Integer> areaList 是否为空,就是 ?1 is null ,但是加上去了在测试的时候就报错了。

去网上搜索,发生这种错误原因有这两种:

第一种

当将数组中的数据放在列表中且没有括号时,用于从列表中搜索数据库的查询语法将是错误的。

例如:

把 s.areaType in (?1) 写成 s.areaType in ?1

因为没把参入用括号括起来,会有语法错误。

第二种

用 coalesce 判断 null

例如:where (coalesce(?1, null) is null or s.areaType in (?1))

因为如果向量为空,则可以产生null;如果不是,则产生第一个值

显然我是第二种情况,诶,搞了我一早上,终于解决了!!!

修改后

java 复制代码
@Query(value = " select new com.dfl.ycp3.enquiry.dto.SmsCountDTO(s.areaType) from SmsCountEntity  s where (coalesce(?1, null) is null or s.areaType in (?1)) and (coalesce(?2, null) is null or s.cityCode in (?2)) order by s.dateCreate desc ")
Page<SmsCountDTO> findSmsCountPage( List<Integer> areaList, Pageable pageable);
相关推荐
陌路203 小时前
S4双向链表
数据结构·链表
wangqiaowq3 小时前
ImmutableList.of() 是 Google Guava 库 提供的一个静态工厂方法,用于创建一个不可变的(immutable)列表。
开发语言·windows·python
2401_841495643 小时前
【数据结构】最长的最短路径的求解
java·数据结构·c++·python·算法·最短路径·图搜索
泡沫冰@3 小时前
数据结构(5)
数据结构
小龙报3 小时前
《算法每日一题(1)--- 连续因子》
c语言·开发语言·c++·windows·git·算法·visual studio
第七序章3 小时前
【C + +】红黑树:全面剖析与深度学习
c语言·开发语言·数据结构·c++·人工智能
日日行不惧千万里4 小时前
绕过微软联网账号限制:用本地用户安装 Windows 11 的最新 3 种方法
windows·microsoft
violet-lz4 小时前
数据结构四大简单排序算法详解:直接插入排序、选择排序、基数排序和冒泡排序
数据结构·算法·排序算法
java_logo4 小时前
Docker 部署 MinIO 全指南
运维·windows·mongodb·docker·容器