小编典典

org.hibernate.annotations.Entity在Hibernate 4中已弃用?

hibernate

我正在尝试更新到Hibernate
4,并且我不赞成使用org.hibernate.annotations.Entity。但是,没有任何文档似乎表明是这种情况。有人对此有任何见识吗?

@org.hibernate.annotations.Entity(dynamicUpdate = true)

阅读 662

收藏
2020-06-20

共1个答案

小编典典

是的,在4.0+中已弃用:

Deprecate org.hibernate.annotations.Entity
Its individual attributes/values should become annotations. 
Schedule for removal in 4.1

您应该@DynamicUpdate改用

这是固定的JIRA谈论它。

2020-06-20