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 7739981
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T08:39:32+00:00 2026-06-01T08:39:32+00:00

Here is the two classes that I’m use to express a bidirectional OneToMany relationship.

  • 0

Here is the two classes that I’m use to express a bidirectional OneToMany relationship.

Class Contact {
    @OneToMany
    public Set getPhoneNumbers() {
        return phoneNumbers;
    }
}
Class PhoneNumber{
    @ManyToOne
    public Contact getContact() {
        return contact;
    }
}

Hibernate is creating a join table (which I think is good for my need)

contact_phonenumber
   -Contact_id
   -phoneNumbers_id

but why is it creating this extra join column (contact_id) on the phoneNumber table

phonenumber
  -id
  -contact_id
  -...

Isn’t the join table enough?

More over, when I save a phonenumber or contact, the join table is updated but not the join column. So why is this join column here?

Thanks for your help.

  • 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-06-01T08:39:34+00:00Added an answer on June 1, 2026 at 8:39 am

    I found a solution:

    Class Contact {
        @OneToMany(mappedBy="contact", targetEntity=PhoneNumber.class, orphanRemoval=false)
        public Set getPhoneNumbers() {
            return phoneNumbers;
        }
    }
    
    Class PhoneNumber{
        @ManyToOne
        @JoinTable(name="t_join_contact_phonenumber", joinColumns=@JoinColumn(name="PHONENUMBER_ID"), inverseJoinColumns=@JoinColumn(name="CONTACT_ID"))
        public Contact getContact() {
            return contact;
        }
    }
    

    Now, Hibernate is creating the join table only

    t_join_contact_phonenumber
       -CONTACT_ID
       -PHONENUMBER_ID
    

    Thanks.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a question, here are two classes below: class Base{ public: virtual void
I have two classes in short here they are: public final class ServerMain {
I've got two classes here. A Base class: class A { int x; public:
What I'm talking about here are nested classes. Essentially, I have two classes that
I have an abstract class and two sub classes that extend it. I have
I have two classes that don't know anything about themselfs class A, class B.
I have two classes: Action class, that has a method for executing VBScript files,
Let just say that we have two classes, A and B . Here is
Let's say that I have two classes A and B. class A { private:
Here are two chunks of code that accomplish (what I think is) the same

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.