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

  • Home
  • SEARCH
  • 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 6788591
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T17:30:14+00:00 2026-05-26T17:30:14+00:00

The hierarchy is the following: Parent object is associated with a Child object. I

  • 0

The hierarchy is the following: Parent object is associated with a Child object.
I create a new Parent object and want to associate it with a Child object that is already stored in database and save the Parent to database. One way to do this is to preload the Child and associate it with the Parent.
But can I create a new Child object, set its id, and associate it with the Parent, so when I save the Parent, hibernate will automatically find the appropriate Child and fill in missing Child fields, which are initially set to null?

Thank you.

  • 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-26T17:30:14+00:00Added an answer on May 26, 2026 at 5:30 pm

    No. You must get the child from the database. But if you use session.load instead of session.get, it will just initialize a proxy to the actual persistent object, without even executing a SQL query. Of course, if the entity does in fact not exist in the database, you’ll have an exception at flush time (or if the entity is being fetched by some other part of the code later in the transaction).

    Child child = session.load(Child.class, idOfChild); // no SQL query here
    Parent p = new Parent();
    p.setChild(child);
    session.persist(p);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want the following query to return the fields in a parent child format.
Let's consider I want to create the following hierarchy: Animal -> Class (mammal, amphibian,
Imagine the following class that displays some sort of hierarchy: class BaseList2D(object): def __init__(self):
I have an hierarchy of classes that looks like the following: class Critical {
I created a hierarchy of case objects in Scala that looks like the following:
Deep inside my WPF object hiearchy I create a Window object. However, I want
I want to use dataview to render the following hierarchy data: [{ id: 1,
I have a structure that looks following Class TreeNode { public TreeNode Parent {
I have the following hierarchy of objects in Entity Framework Code First: class Parent
I have a class hierarchy that can be simply put like this: struct Parent

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.