No identifier specified for entity
Posted hoonick
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了No identifier specified for entity相关的知识,希望对你有一定的参考价值。
org.hibernate.AnnotationException: No identifier specified for entity
异常信息
org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'entityManagerFactory' defined in
class path resource [org/springframework/boot/autoconfigure/orm/jpa/HibernateJpaConfiguration.class]: Invocation of ini
t method failed; nested exception is org.hibernate.AnnotationException: No identifier specified for entity
异常原因
实体类中需要有唯一标识符,需要指定主键
解决
在你实体类的主键上加上下面的两个注解即可。
@Id
@GeneratedValue
private Long id;
以上是关于No identifier specified for entity的主要内容,如果未能解决你的问题,请参考以下文章
No identifier specified for entity: XXXX 错误
springboot No Identifier specified for entity的解决办法
SpringBoot2 JPA No Identifier specified for entity的解决办法
java框架整合错误:org.hibernate.AnnotationException: No identifier specified for entity
"org.hibernate.AnnotationException: No identifier specified for entity"异常分析