码迷,mamicode.com
首页 > 其他好文 > 详细

No identifier specified for entity

时间:2019-07-26 11:53:56      阅读:123      评论:0      收藏:0      [点我收藏+]

标签:toc   ram   work   error   source   实体   configure   name   except   

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

标签:toc   ram   work   error   source   实体   configure   name   except   

原文地址:https://www.cnblogs.com/hoonick/p/11249128.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!