为什么jpa和hibernate都有“Entity”?和“表”注释?
我使用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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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