欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Caused by: org.hibernate.AnnotationException: No identifier specified for entity:

程序员文章站 2022-04-12 16:24:56
...

项目报错如下:

Caused by: org.hibernate.AnnotationException: No identifier specified for entity:

原因是没有加@Id注解,但是我发现我的字段上是加了的。最后发现引入的包不对。

错误的包:

import org.springframework.data.annotation.Id;

正确的包:

import javax.persistence.*;