如何将PSQL ::: json @> :: json转换为jpa / jpql-predicate

时间:2019-04-12 08:18:06

标签: jpa hql jpql predicate

说我有一个看起来像这样的数据库表:

CREATE TABLE myTable(
   id BIGINT, 
   date TIMESTAMP, 
   user_ids JSONB 
);

user_idsJSONB-ARRAY

让此表的记录如下:

{
     "id":13,
     "date":"2019-01-25 11:03:57",
     "user_ids":[25, 661, 88]
};

我需要查询user_ids包含25的所有记录。在SQL中,我可以使用以下选择语句来实现它:

SELECT * FROM myTable where user_ids::jsonb @> '[25]'::jsonb;

现在,我需要编写一个JPA谓词,将"user_ids::jsonb @> '[25]'::jsonb"呈现为休眠的可解析/可执行标准,然后我打算在session.createQuery()语句中使用它。 简单来说,我需要知道如何将PSQL片段(user_ids::jsonb @> '[25]'::jsonb)编写为HQL表达式。

1 个答案:

答案 0 :(得分:2)

幸运的是,PostgreSQL中的每个比较运算符都只是函数的别名,您可以通过psql控制台通过键入\doS+和该运算符来找到别名(尽管有些运算符被认为是通配符搜索,因此它们给出的结果超出预期)。

这是结果:

postgres=# \doS+ @>
                                          List of operators
   Schema   | Name | Left arg type | Right arg type | Result type |      Function       | Description 
------------+------+---------------+----------------+-------------+---------------------+-------------
 pg_catalog | @>   | aclitem[]     | aclitem        | boolean     | aclcontains         | contains
 pg_catalog | @>   | anyarray      | anyarray       | boolean     | arraycontains       | contains
 pg_catalog | @>   | anyrange      | anyelement     | boolean     | range_contains_elem | contains
 pg_catalog | @>   | anyrange      | anyrange       | boolean     | range_contains      | contains
 pg_catalog | @>   | box           | box            | boolean     | box_contain         | contains
 pg_catalog | @>   | box           | point          | boolean     | box_contain_pt      | contains
 pg_catalog | @>   | circle        | circle         | boolean     | circle_contain      | contains
 pg_catalog | @>   | circle        | point          | boolean     | circle_contain_pt   | contains
 pg_catalog | @>   | jsonb         | jsonb          | boolean     | jsonb_contains      | contains
 pg_catalog | @>   | path          | point          | boolean     | path_contain_pt     | contains
 pg_catalog | @>   | polygon       | point          | boolean     | poly_contain_pt     | contains
 pg_catalog | @>   | polygon       | polygon        | boolean     | poly_contain        | contains
 pg_catalog | @>   | tsquery       | tsquery        | boolean     | tsq_mcontains       | contains
(13 rows)

您想要的是两侧的jsonb参数,我们看到的函数名为jsonb_contains。因此,与jsonbcolumn @> jsonbvalue等效的是jsonb_contains(jsonbcolumn, jsonbvalue)。现在,除非使用Hibernate,否则除非通过自定义方言注册它,否则您将无法在JPQL或CriteriaBuilder中使用该函数。如果您使用的是EclipseLink,我不知道那里的情况。

从这里开始,您的选择是使用本机查询,或者通过扩展现有的本地查询来添加自己的Hibernate方言。