我有一个用户类:
@Entity
public class User implements Serializable {
//..
@ElementCollection(fetch = FetchType.EAGER)
Set<UserPrivs> privs;
//..
}
其中 UserPrivs - 枚举。
我想创建方法List<User> getUsersByPrivs(Set<UserPrivs> privs)
,它将返回包含所有权限的所有用户。
我怎样才能做到这一点?