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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T03:21:21+00:00 2026-06-14T03:21:21+00:00

I have class User and class Address. Address contains only 4 property: publiс class

  • 0

I have class User and class Address. Address contains only 4 property:

publiс class Address {

    private Long id;
    private String country;
    private String city;
    private String street;

    // getters and setters
}

And structure of User:

public class User {
    private Long id;
    private String name;
    private Address homeAddress;
    private Address businessAddress;

    // other fields and methods
}

What type of JPA relationship to choose and how to make it through annotations in this case when one entity(User) has two(or more) fields having one’s own type of some custom class(Address)?

It would be a one-to-many relantionship if User has only one address. But what about this case? How to define correctly these objects in my system?

I tried to create another field users in Address class:

@OneToMany(mappedBy = "?")
private List<User> users;

But this’s not a solution for my problem because there’re two fields of Address type in class User. And it’s not clear that it’s necessary to define in the mappedBy annotation…

I will be grateful for any advice!

  • 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-14T03:21:23+00:00Added an answer on June 14, 2026 at 3:21 am
        public class User {
        private Long id;
        private String name;
        private Address homeAddress;
        private Address businessAddress;
    
        // other fields and methods
    
        @OneToOne(cascade = CascadeType.ALL, fetch = FetchType.LAZY)
        @JoinColumn(name = "HOME_ADDRESS_ID")
        public Address getHomeAddress() {
            return homeAddress;
        }
    
        public void sethOMEAddress(Address homeAddress) {
            this.homeAddress= homeAddress;
        }
    
        @OneToOne(cascade = CascadeType.ALL, fetch = FetchType.LAZY)
        @JoinColumn(name = "BUSINESS_ADDRESS_ID")
        public Address getBusinessAddress() {
            return businessAddress;
        }
    
        public void setBusinessAddress(Address businessAddress) {
            this.businessAddress= businessAddress;
        }
    }
    

    and the class address remain the same.

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

Sidebar

Related Questions

This a continuation of this question. I have an Address class which contains basic
I have a class (USER) which has the following properties (NSString name, NSString address,
I have a form that let user enter values about address information. I want
Previously I used: feeds = feeds.Where(a => a.Address.ToUpper().Contains(ff.Street.ToUpper())).ToList(); Now, Address has become a custom
If I have the following code: class User < ActiveRecord::Base has_many :problems attr_accessible :email,
I have two classes, namely User & UserProfile User contains(few attributes like):- userId loginId
I have a Flow in MULE which contains a HTTP inbound and component class
The scenario: a User class has several groups of properties: password , address ,
I have an entity User and an entity Address. There is a relation One-to-Many
I have a textbox that will collect the ip address from the user. I

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.