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

时间:2021-07-17 23:27:03

使用hibernate的e-r映射pojo类的时候遇到org.hibernate.AnnotationException: No identifier specified for entity的异常,可是Entry的注释没有问题,唯一的问题是这张表没有设置主键,好像hibernate在映射的时候必须要有主键才行 。

所以问题的解决办法就是给表增加主键

private String id;
@Id
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}