【发布时间】:2017-11-21 12:32:46
【问题描述】:
我有一个枚举如下:
public enum UserRole {
ADMIN,ORGANIZER,USER
}
然后在另一个班级,我正在尝试收集这个枚举:
@Data
@Entity
public class User {
@Id
@GeneratedValue
Long id;
@OneToMany
Collection<UserRole> userRole;
}
但它抱怨以下错误:
Caused by: org.hibernate.AnnotationException: Use of @OneToMany or @ManyToMany targeting an unmapped class: com.eventer.demo.model.User.userRole[com.eventer.demo.model.UserRole]
【问题讨论】:
标签: java hibernate spring-boot enums javabeans