使用 JPA 1.0 的 CriteriaQuery
是否可以将 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不,JPA 1.0 没有指定 Criteria API,Criteria API 是 JPA 2.0 中新内容的一部分。
JPA 1.0 和 JPA 2.0 都不是 Java SE 的一部分(捆绑在一起)。但是,您可以在 Java SE 中使用 JPA(1.0 或 2.0)。
如上所述,这不是 JPA 1.0 API 的一部分,如果您不使用 JPA 2.0 实现,您将找不到它。
在您的情况下,唯一的选择是使用 Hibernate 的 专有 API 条件查询。您需要访问
Session
才能执行此操作:参考文献
No, JPA 1.0 didn't specify a Criteria API, the Criteria API is part of the new stuff from JPA 2.0.
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.
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.
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:References
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.