Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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;
share|improve this question
What doest it mean: "the name attribute of Role object in UserRole"? – axtavt Mar 28 '11 at 8:04
in Role.java, I have a private String name; with getters and setters – user373201 Mar 28 '11 at 13:39
@user373201: Still can't get the point. How do you want to use it as a key in the map that is declared in Role itself? – axtavt Mar 28 '11 at 13:49

2 Answers

up vote 2 down vote accepted

In JPA the @MapKey can only be a local field. You could try to use just "role" as the key, as it should be similar to using the role name. Or, map the role name into the UserRole. You could also just map it as a List or Set and just define methods in your class to access it by the key.

If you are using EclipseLink you can also use a method as the map key, so you could define a getRoleName() in UserRole that returns the Role's name, and use this with the @MapKey.

share|improve this answer

I am shooting in the dark :)

If you want to use the name attribute of Role object in UserRole as the key for the Map. you can try to make the name attribute in Role object as @Id. Then your @MapKey(name="role")

Hope this help. we can discuss more if this won help. I also try to understand this kind of stuff now.

share|improve this answer
Although it might be a solution. I would like to know if there is a way to use the name attribute with making it an Id. – user373201 Mar 28 '11 at 13:40

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.