Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 4087576
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T18:52:21+00:00 2026-05-20T18:52:21+00:00

I have 3 entities. User,Project and Role. A user can be assigned to multiple

  • 0

I have 3 entities. User,Project and Role.
A user can be assigned to multiple projects with some roles.
A user GEORGE can have ADMIN role on PROJECT-A and MANAGER role on PROJECT-B. How can I map these entities using bi-directional association.

*The relation can be described in following way.

A USER can have many projects through a role.

A role can be assigned to 0 or more projects for a specific User.*

Is it possible with a JOIN-TABLE.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-20T18:52:21+00:00Added an answer on May 20, 2026 at 6:52 pm

    You’ll need to introduce a fourth entity (let’s call it Right), which tells that a specific user has a specific role on a specific project. You will thus end with the following associations :

    • One User has Many Rights
    • One Role has Many Rights
    • One Project has Many Rights

    The RIght entity will be mapped to a table having three foreign keys (to user, role and project), and the tuple (userId, projectId, roleId) should be unique.

    You’ll need to use dedicated queries (or Java methods) to find the roles of a user for a project :

    public class User {
        // ...
        public Set<Role> getRolesForProject(Project project) {
            Set<Role> result = new HashSet<Role>();
            for (Right right : rights) {
                if (right.getProject().equals(project)) {
                    result.add(right.getRole());
                }
            }
            return result;
        }
    }
    

    or, in HQL :

    select role from Right right 
    inner join right.role role 
    where right.user = :user 
    and right.project = :project
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have created a user control to handle adding comments to certain business entities,
I've got some entities which have decimal properties on them. These entities' properties are
I have a question in core data: there are 2 Entities in the project,
When I have entities in my domain with lists of things, should they be
Say I have entities organized in a hierarchy with Parent being the root entity
Should entities have behavior? or not? Why or why not? If not, does that
I have two entities Foo and Bar with a Many to Many relationship between
I have two entities, each from a different database and therefore different edmx files.
I have two entities, Entity1 and Entity2, on a one to many relationship. On
I have a situation where I have two entities that share a primary key

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.