Spring数据本机查询不允许Postgres jsonb字符串存在运算符(问号)

时间:2018-04-26 11:16:49

标签: postgresql hibernate spring-data

我正在尝试在SpringData本机查询中使用Postgres jsonb字符串存在运算符。

SpringData方法示例:

@Query(value = "SELECT t.id \n"
        + " FROM task AS t \n"
        + " WHERE (t.worker_ids \\? :workerId)\n"
        + " ORDER BY t.created_at\n",
        nativeQuery = true)
Optional<String> findMatchingTaskId(@Param("workerId") String workerId);

其中worker_ids在数据库中的类型为JSOB。 我试图用\\排除问号,但仍然出现以下错误: org.postgresql.util.PSQLException: No value specified for parameter 2.

有没有办法将此运算符用于spring数据本机查询?

1 个答案:

答案 0 :(得分:2)

PostgreSQL中的所有运算符都使用基础过程:

> SELECT oprname, oprcode FROM pg_operator WHERE oprname LIKE '%?%'

oprname | oprcode
--------------------------
?       | jsonb_exists
?|      | jsonb_exists_any
?&      | jsonb_exists_all
...

因此您可以像这样使用jsonb_exists(jsonb, text)重写查询:

SELECT t.id
FROM task AS t
WHERE jsonb_exists(t.worker_ids, :workerId)
ORDER BY t.created_at