如何忽略 Spring JPQL 中的空参数?

Posted

技术标签:

【中文标题】如何忽略 Spring JPQL 中的空参数?【英文标题】:How to ignore null parameter in Spring JPQL? 【发布时间】:2020-04-13 07:48:39 【问题描述】:

我有一个这样创建的 API。当您提供两个参数时它可以工作,但我希望它在任何一个参数为空时工作。有什么办法吗?

@Query("Select u from User u where u.agency = :agency and " +
            "(u.firstName like %:firstName%)")
    public List<User> multiParam(Agency agency, String firstName);

【问题讨论】:

【参考方案1】:

试试这个

@Query("Select u from User u where (:agency is null or u.agency = :agency) and " +
        "(:firstName is null or u.firstName like %:firstName%)")
public List<User> multiParam(Agency agency, String firstName);

如需更多参考,请查看link。

【讨论】:

这行得通,但你能解释一下它是如何工作的吗?为什么要在前面添加is Null检查使其忽略null? IS NULL 将检查它是否为空。例如,如果您将代理发送为 null,则 (:agency 为 null 或 u.agency=:agency) 将被评估为 true,因此不会影响整个 where 子句。

以上是关于如何忽略 Spring JPQL 中的空参数?的主要内容,如果未能解决你的问题,请参考以下文章

多对多 JPQL @Query 与 List 作为 Spring 中的参数

Spring Boot JPA:为同一参数传递多个值 (JPQL)

忽略 SQL 中的空绑定变量

如何使用 JPQL、Spring Data Repositories 和 Hibernate 为 TimescaleDB `time_bucket` 函数参数化 Postgresql 间隔

如何在 Spring JpaRepository 中使用 JPQL 选择组中的最新记录?

如何忽略 ExtJS 数据模型中的空字段?