码迷,mamicode.com
首页 > Web开发 > 详细

org.hibernate.AnnotationException: No identifier specified for entity

时间:2014-10-21 02:31:05      阅读:189      评论:0      收藏:0      [点我收藏+]

标签:hibernate   specified   annotationexception   

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

 

使用hibernate的e-r映射pojo类的时候遇到org.hibernate.AnnotationException: No identifier specified for entity异常。可是entity类的注释没有问题,唯一的不正常的地方是这张表比较特殊没有主键,好像在使用hibernate的映射表的时候entity类是必须要主键的,否则就会报出这个异常。
解决办法自然是add一个主键进去,添加主键的神器就在我的上一篇文章中,这里主要是对实体类的注释,应该做添加
 @Id
@GeneratedValue(strategy=GenerationType.IDENTITY)
@Column(name = "id", nullable = false)
privateint id;


org.hibernate.AnnotationException: No identifier specified for entity

标签:hibernate   specified   annotationexception   

原文地址:http://wangyaojie.blog.51cto.com/8877058/1566021

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