I have 3 tables: user, role, project. In addition, I created a table that links them all together and has the structure like this: id, id_user, id_role, id_project. I would like, using annotation, in the user class, create a map: Map <Project, Role>
.
Is this possible?