为什么jpa和hibernate都有“Entity”?和“表”注释?

发布于 2024-12-18 12:37:49 字数 348 浏览 1 评论 0原文

我使用hibernate 3.6,发现有这样的注释:

javax.persistence.Entity
org.hibernate.annotations.Entity

javax.persistence.Table
org.hibernate.annotations.Table

Why hibernate提供了自己的?它是jpa的替代品,还是只是一种补充?我应该(可以)将它们一起使用,例如:

@javax.persistence.Entity
@org.hibernate.annotations.Entity
public class User {}

I use hibernate 3.6, and found there are such annotations:

javax.persistence.Entity
org.hibernate.annotations.Entity

javax.persistence.Table
org.hibernate.annotations.Table

Why hibernate provides its own? Is it a replacement of jpa one, or just a complement? Should(Can) I use them both together, like:

@javax.persistence.Entity
@org.hibernate.annotations.Entity
public class User {}

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

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

发布评论

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

评论(1

注定孤独终老 2024-12-25 12:37:49

org.hibernate.annotations.Entity 使用 hibernate 功能扩展了 javax.persistence.Entity。

请参阅: http://docs.jboss.org /hibernate/core/3.6/javadocs/org/hibernate/annotations/Entity.html

org.hibernate.annotations.Entity extends javax.persistence.Entity with hibernate features.

see: http://docs.jboss.org/hibernate/core/3.6/javadocs/org/hibernate/annotations/Entity.html

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