I am attempting to update to Hibernate 4 and I am getting that org.hibernate.annotations.Entity is deprecated. None of the documentation however seems to indicate that this is the case. Anyone have any insight into this?
@org.hibernate.annotations.Entity(dynamicUpdate = true)
Yes it is deprecated in 4.0+:
You should use
@DynamicUpdateinsteadHere is a fixed JIRA talking about it.