首页
Python
Java
前端
数据库
Linux
Chatgpt专题
开发者工具箱
enti专题
spring data jpa项目启动报错,Caused by: org.hibernate.AnnotationException: No identifier specified for enti
解决方法:在实体类上添加@MappedSuperclass注解。 因为我的实体类都有id字段,所以我抽象出来一个IdEntity基类,之后忘了给它添加@MappedSuperclass注解;如果你的实体类没有父类IdEnity,只在实体类的id字段添加如下代码,@column不是必须的。
阅读更多...