本文主要是介绍spring data jpa项目启动报错,Caused by: org.hibernate.AnnotationException: No identifier specified for enti,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
解决方法:在实体类上添加@MappedSuperclass注解。
因为我的实体类都有id字段,所以我抽象出来一个IdEntity基类,之后忘了给它添加@MappedSuperclass注解;如果你的实体类没有父类IdEnity,只在实体类的id字段添加如下代码,@column不是必须的。
这篇关于spring data jpa项目启动报错,Caused by: org.hibernate.AnnotationException: No identifier specified for enti的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!