在 JPA2 标准中选择...等效项

发布于 2024-11-02 06:08:34 字数 159 浏览 0 评论 0原文

有没有办法使用 JPA2 标准 API 执行如下查询?

select a from b where a in (1, 2, 3, 4)

有一种方法可以使用普通的 Hibernate 来做到这一点,但我们在 JPA2 中找不到类似的东西。

Is there any way to perform a query like the following using JPA2 criteria APIs?

select a from b where a in (1, 2, 3, 4)

There's a way to do that using plain Hibernate, but we can't find anything like that in JPA2.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

盛夏已如深秋| 2024-11-09 06:08:34

是的,JPA 2 Critera 支持从实体返回特定字段并使用包含 in 子句的 where 子句。我在下面提供了一个示例,该示例采用 JPQL 并将其转换为类似的基于 JPA 2 Criteria 的选项。

JPQL:

select b.a from B b where a in (1, 2, 3, 4)

标准:

CriteriaBuilder criteriaBuilder = entityManager.getCriteriaBuilder();
// assuming a is an Integer  
// if returning multiple fields, look into using a Tuple 
//    or specifying the return type as an Object or Object[]
CriteriaQuery<Integer.class> query = criteriaBuilder.createQuery(Integer.class);
Root<B.class> from = query.from(Bean.class);
query.select(from.get("a"))
     .where(from.get("a").in(1, 2, 3, 4));

// create query and execute...
...  

以下链接提供了一些使用 in 的附加示例:

希望这有帮助!

Yes JPA 2 Critera supports returning a specific field from a entity and using a where clause which includes an in clause. I have included an example below which takes a JPQL and converts it to a similar JPA 2 Criteria-based option.

JPQL:

select b.a from B b where a in (1, 2, 3, 4)

Criteria:

CriteriaBuilder criteriaBuilder = entityManager.getCriteriaBuilder();
// assuming a is an Integer  
// if returning multiple fields, look into using a Tuple 
//    or specifying the return type as an Object or Object[]
CriteriaQuery<Integer.class> query = criteriaBuilder.createQuery(Integer.class);
Root<B.class> from = query.from(Bean.class);
query.select(from.get("a"))
     .where(from.get("a").in(1, 2, 3, 4));

// create query and execute...
...  

Here are some links that give some addition examples of using in:

Hope this helps!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文