标签: hibernate annotations mapping
我有两张如下表:
position ------------ position_id int(9) company_id int(9) description ... authority ------------ position_id int(9) company_id int(9) role varchar
在我的位置对象中,我有一个List<String> getRoles()方法。我如何注释我的getRoles()方法以从我的权限表中返回角色列表?
List<String> getRoles()
getRoles()
答案 0 :(得分:0)
@ElementCollection。有关详细信息,请阅读Hibernate reference manual。它解释了一切。
@ElementCollection