OpenJPA:如何使实体使用动态更新、可变、乐观锁等
我正在从 Hibernate 迁移到 OpenJPA。有很多带有这样注释的实体: @org.hibernate.annotations.Entity(可变= true,dynamicUpdate = true,optimisticLock = OptimisticLockType.VERSION)。 有没有办法在 OpenJPA 中使用这些属性?
I'm migrating from Hibernate to OpenJPA. And there are many entities with annotations like this:
@org.hibernate.annotations.Entity(mutable = true, dynamicUpdate = true, optimisticLock = OptimisticLockType.VERSION).
Is there any way to use these properties in OpenJPA?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不会自称是 Hibernate 专家,但我认为您不需要使用任何 OpenJPA 特定注释。我会坚持使用
@javax.persistence.Entity
和@javax.persistence.Version
(在您的版本字段上)。I'm not going to claim to be a Hibernate expert, but I don't think you need to use any OpenJPA specific annotations. I'd stick to
@javax.persistence.Entity
and@javax.persistence.Version
(on your version field).