Org.Hibernate.AnnotationException: No Identifier Specified For Entity

org.hibernate.AnnotationException:

No identifier specified forentity: net.viralpatel.hibernate.Employee

这里的错误是,在你的实体类,你没有定义一个主键。因此指定@ id注释或@EmbeddedId注释。

然而却不是的,只是因为我的private static final long serialVersionUID = 1L 冲突了,在同个工程了存在了两个这样相同的值,所以抛出了此次异常。

你可能感兴趣的:(annotation)