EJB/JPA:它叫JPQL还是EJBQL?
JPA 查询语言称为 JPQL 还是 EJBQL?我不断地阅读有关它们的内容,JPQL 似乎出现得更频繁一些,但是像 JBoss Seam 这样的框架到处都使用 EJBQL,那么哪一个是那个呢?
Is the JPA query language called JPQL or EJBQL? I keep reading about them here and there, JPQL seems to appear slightly more often, but frameworks like JBoss Seam use EJBQL everywhere, so which one is the one?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
EJBQL 是 EJB 2.1 规范中包含的过时查询语言。
JPQL 是与 JPA 一起使用并取代 EJBQL 的新查询语言。 JPQL 支持所有旧的 EJBQL 语言,包括许多已弃用的部分。
EJBQL is the obsolete query language that was included with the EJB 2.1 spec.
JPQL is the new query language that is used with JPA and supercedes EJBQL. JPQL supports all the old EJBQL language, including many deprecated parts.