I have the following
@OneToMany(mappedBy="role")
@MapKey(name="role.name")
private Map<String,UserRole> userRoles = new HashMap<String,UserRole>();
I want to use the name attribute of Role object in UserRole as the key for the Map, How can i achieve this. @MapKey(name="role.name") does not work.
My UserRole.java has the following
@ManyToOne
@JoinColumn(name="roleId")
private Role role;
Roleitself? – axtavt Mar 28 '11 at 13:49