使用 JPA 1.0 的 CriteriaQuery

发布于 2024-09-14 09:29:36 字数 505 浏览 4 评论 0原文

是否可以将 CriteriaQuery 与 JPA 1.0 一起使用。我猜 JPA 2.0 不适用于 Java Se(版本 - Java(TM) SE Runtime Environment (build 1.6.0_16-b01))。我绑定使用,

CriteriaBuilder cb = em.getCriteriaBuilder();
CriteriaQuery<Test> cq = cb.createQuery(Test.class);
Root<Test> test= cq.from(Test.class);

....

但在javax.persistence.*中找不到CriteriaBuilder的定义; (也尝试过 import javax.persistence.criteria.CriteriaBuilder; )

如果不可能,我最好的选择是什么。我在后端使用休眠,但仍然有非专有的方法来做到这一点?如果不是休眠怎么办?

谢谢。

Is it possible to use CriteriaQuery with JPA 1.0. I guess JPA 2.0 not available with Java Se ( version -- Java(TM) SE Runtime Environment (build 1.6.0_16-b01)) . I tied to use,

CriteriaBuilder cb = em.getCriteriaBuilder();
CriteriaQuery<Test> cq = cb.createQuery(Test.class);
Root<Test> test= cq.from(Test.class);

....

But could not find the definition of CriteriaBuilder in javax.persistence.*; (tried import javax.persistence.criteria.CriteriaBuilder; as well)

If it is not possible, what is the best option I have. I use hibernate in the backend, but still is there a non proprietary way to do this? if not how to do in hibernate?

thanks.

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

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

发布评论

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

评论(2

给不了的爱 2024-09-21 09:29:36

是否可以将 CriteriaQuery 与 JPA 1.0 一起使用。

不,JPA 1.0 没有指定 Criteria API,Criteria API 是 JPA 2.0 中新内容的一部分。

我猜 JPA 2.0 不适用于 Java SE

JPA 1.0 和 JPA 2.0 都不是 Java SE 的一部分(捆绑在一起)。但是,您可以在 Java SE 中使用 JPA(1.0 或 2.0)。

(...)但是在javax.persistence.*中找不到CriteriaBuilder的定义

如上所述,这不是 JPA 1.0 API 的一部分,如果您不使用 JPA 2.0 实现,您将找不到它。

如果不可能,我最好的选择是什么。我在后端使用休眠,但仍然有非专有的方法来做到这一点?如果不是休眠怎么办?

在您的情况下,唯一的选择是使用 Hibernate 的 专有 API 条件查询。您需要访问 Session 才能执行此操作:

org.hibernate.Session session = (Session) em.getDelegate(); 
Criteria crit = session.createCriteria(Cat.class);
crit.setMaxResults(50);
List cats = crit.list();

参考文献

Is it possible to use CriteriaQuery with JPA 1.0.

No, JPA 1.0 didn't specify a Criteria API, the Criteria API is part of the new stuff from JPA 2.0.

I guess JPA 2.0 not available with Java SE

Neither JPA 1.0 nor JPA 2.0 are part of Java SE (bundled with). You CAN however use JPA (1.0 or 2.0) in Java SE.

(...) But could not find the definition of CriteriaBuilder in javax.persistence.*

As mentioned, this is not part of the JPA 1.0 API, you won't find it if you're not using a JPA 2.0 implementation.

If it is not possible, what is the best option I have. I use hibernate in the backend, but still is there a non proprietary way to do this? if not how to do in hibernate?

The only option in your case would be to use Hibernate's proprietary API for Criteria Queries. You'll need to access the Session to do so:

org.hibernate.Session session = (Session) em.getDelegate(); 
Criteria crit = session.createCriteria(Cat.class);
crit.setMaxResults(50);
List cats = crit.list();

References

情深如许 2024-09-21 09:29:36

JPA2 肯定可用于 Java SE,但默认情况下它不随 JDK 一起提供。

由于 JPA1 规范没有指定 EntityManager 上的 getCriteriaBuilder() 方法之类的内容,因此您不太可能在不升级到 JPA2 的情况下轻松使用它们。

Hibernate 3.5+ 的 hibernate-entitymanager.jar 文件实现了 Hibernate 的 JPA2 api,并且应该允许您在 Java SE 中使用新的 JPA 功能。

有关更多详细信息,我建议参考文档 Hibernate Core< /a> 和 Hibernate Entity Manager,特别是这些部分后者涉及在 Java SE 中获取 EntityManager。

JPA2 is most certainly available for Java SE but it does not ship with the JDK by default.

Since the JPA1 spec doesn't specify things like the getCriteriaBuilder() method on the EntityManager, you're unlikely to be able to use them easily without upgrading to JPA2.

The hibernate-entitymanager.jar file for Hibernate 3.5+ implements the JPA2 api for Hibernate and should allow you to use the new JPA features just fine with Java SE.

For more details, I'd suggest the reference docs for Hibernate Core and Hibernate Entity Manager, specifically the sections in the latter pertaining to obtaining an EntityManager in Java SE.

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