Hibernate from Getting started to mastering (10) Multiple to multiple one-way correlation mapping

Source: Internet
Author: User

Previous article hibernate from getting started to mastering (ix) A pair of multiple bidirectional association mappings we explained the relevant content of a one-to-many correlation mapping, this time we continue to multiple one-way association mappings.

Multi-pair multiple one-way association mappings

Before explaining the multiple to multiple one-way association mapping, first look at the relevant class diagram and code, as follows:

public class Role {  
    private int id;   
    private String name;  
          
    public int getId () {return  
        ID;  
    }  
    public void setId (int id) {  
        this.id = ID;  
    }  
    Public String GetName () {return  
        name;  
    }  
    public void SetName (String name) {  
        this.name = name;  
    }  
}  
      
public class User {   
    private int id;   
    private String name;  
    private Set roles;  
          
    public int getId () {return  
        ID;  
    }  
    public void setId (int id) {  
        this.id = ID;  
    }  
    Public String GetName () {return  
        name;  
    }  
    public void SetName (String name) {  
        this.name = name;  
    }  
    Public Set GetRoles () {return  
        roles;  
    }  
    public void Setroles (Set roles) {  
        this.roles = roles;  
    }  
}

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.