项目报错如下:
Caused by: org.hibernate.AnnotationException: No identifier specified for entity:
原因是没有加@Id注解,但是我发现我的字段上是加了的。最后发现引入的包不对。
错误的包:
import org.springframework.data.annotation.Id;
正确的包:
import javax.persistence.*;
项目报错如下:
Caused by: org.hibernate.AnnotationException: No identifier specified for entity:
原因是没有加@Id注解,但是我发现我的字段上是加了的。最后发现引入的包不对。
错误的包:
import org.springframework.data.annotation.Id;
正确的包:
import javax.persistence.*;