org.hibernate.annotations.Entity deprecated in Hibernate 4?

前端 未结 4 1517
执笔经年
执笔经年 2020-12-05 13:43

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

4条回答
  •  没有蜡笔的小新
    2020-12-05 14:01

    Use the JPA @Entity annotation instead of the Hibernate @Entity annotation. Look in your imports, it should say

        import javax.persistence.Entity;
    

    and not

        import org.hibernate.annotations.Entity;
    

提交回复
热议问题